* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #ffffff;
            color: #333;
            overflow-x: hidden;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Sparkling Background */
        .sparkle-container {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
        }

        .sparkle {
            position: absolute;
            border-radius: 50%;
            animation: pulse 3s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.1; transform: scale(1); }
            50% { opacity: 0.3; transform: scale(1.2); }
        }

        /* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.8);
            border-bottom: 1px solid #e0f2fe;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.breadcrumb {
    margin-top: 64px;
    padding: 0.75rem 1rem 0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.breadcrumb-nav a {
    color: #0284c7;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

.breadcrumb-current {
    color: #111827;
    font-weight: 600;
}

.breadcrumb-sep {
    color: #9ca3af;
}

        .header-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 64px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #38bdf8, #2563eb);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }

        .logo-text {
            font-size: 1.25rem;
            font-weight: bold;
            background: linear-gradient(90deg, #0284c7, #2563eb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        nav {
            display: flex;
            gap: 0.25rem;
        }

        nav button {
            padding: 0.5rem 1rem;
            border: none;
            background: none;
            border-radius: 8px;
            font-size: 0.875rem;
            font-weight: 500;
            color: #6b7280;
            cursor: pointer;
            transition: all 0.3s;
        }

        nav button:hover, nav button.active {
            background: #e0f2fe;
            color: #0284c7;
        }

        .mobile-menu-btn {
            display: none;
            padding: 0.5rem;
            border: none;
            background: none;
            cursor: pointer;
            font-size: 1.5rem;
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 64px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-top: 1px solid #e5e7eb;
            padding: 0.5rem 1rem;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu button {
            display: block;
            width: 100%;
            padding: 0.75rem 1rem;
            border: none;
            background: none;
            text-align: left;
            font-size: 0.875rem;
            font-weight: 500;
            color: #6b7280;
            cursor: pointer;
            border-radius: 8px;
            margin-bottom: 0.25rem;
        }

        .mobile-menu button:hover {
            background: #f3f4f6;
        }

        /* Sections */
section {
    padding: 4rem 1rem;
    position: relative;
    z-index: 1;
}

        .container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: 2.25rem;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 1rem;
        }

        .section-underline {
            width: 96px;
            height: 4px;
            background: linear-gradient(90deg, #38bdf8, #2563eb);
            margin: 0 auto;
            border-radius: 9999px;
        }

        /* Hero Section */
#home {
    min-height: auto;
    display: flex;
    align-items: center;
    padding-top: 4.5rem;
    padding-bottom: 4rem;
}

        .hero-content {
            text-align: center;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: bold;
            line-height: 1.2;
            background: linear-gradient(90deg, #0284c7, #2563eb, #4f46e5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .hero-subtitle {
            font-size: 1.875rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 1.5rem;
        }

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

        .badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid #e0f2fe;
            border-radius: 9999px;
            font-size: 0.875rem;
            color: #6b7280;
        }

        .badge svg {
            width: 16px;
            height: 16px;
            color: #0284c7;
        }

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin: 2rem 0 2.5rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 220px;
}

        .btn-primary {
            background: linear-gradient(90deg, #38bdf8, #2563eb);
            color: white;
        }

.btn-secondary {
    background: linear-gradient(90deg, #fbbf24, #f97316);
    color: white;
}

.btn:hover {
            transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.upsc-soon {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.95;
    cursor: not-allowed;
}

.upsc-soon:disabled {
    filter: grayscale(0.05);
}

.soon-badge {
    position: relative;
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #2563eb;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(147, 197, 253, 0.9);
    border-radius: 9999px;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.12);
    overflow: hidden;
}

.soon-badge::before,
.soon-badge::after {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle, rgba(56, 189, 248, 0.6) 0 2px, transparent 3px),
        radial-gradient(circle, rgba(99, 102, 241, 0.6) 0 2px, transparent 3px),
        radial-gradient(circle, rgba(14, 165, 233, 0.5) 0 2px, transparent 3px);
    opacity: 0.7;
    animation: sparkle-drift 3.5s linear infinite;
}

.soon-badge::after {
    animation-duration: 5s;
    animation-direction: reverse;
    opacity: 0.4;
}

@keyframes sparkle-drift {
    0% { transform: translateX(-20%) translateY(-10%); }
    50% { transform: translateX(20%) translateY(10%); }
    100% { transform: translateX(-20%) translateY(-10%); }
}

.hero-card {
    max-width: 900px;
    margin: 2.5rem auto 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    text-align: center;
}

        .feature-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
        }

        .feature-icon.blue { background: #dbeafe; color: #0284c7; }
        .feature-icon.yellow { background: #fef3c7; color: #d97706; }
        .feature-icon.indigo { background: #e0e7ff; color: #4f46e5; }

        .feature-title {
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .feature-desc {
            font-size: 0.875rem;
            color: #6b7280;
        }

        /* About Section */
        #about {
            background: linear-gradient(180deg, #ffffff, #f0f9ff);
        }

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

        .glass-card {
            padding: 2rem;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid #e0f2fe;
            border-radius: 16px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }

        .glass-card:hover {
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }

        .card-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 1rem;
        }

.card-text {
    color: #6b7280;
    line-height: 1.6;
    text-align: justify;
}

        /* Exam Details Section */
        .exam-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(320px, 1fr));
            gap: 2rem;
        }

        .exam-card {
            padding: 2rem;
            border-radius: 16px;
            border: 2px solid;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }

        .exam-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
        }

        .exam-card.ssc {
            background: linear-gradient(135deg, #f0f9ff, #dbeafe);
            border-color: #bae6fd;
        }

        .exam-card.upsc {
            background: linear-gradient(135deg, #fef3c7, #fed7aa);
            border-color: #fde68a;
        }

        .exam-card.sscexam {
            background: linear-gradient(135deg, #dcfce7, #bbf7d0);
            border-color: #86efac;
        }

        .exam-card.jeeneet {
            background: linear-gradient(135deg, #ede9fe, #ddd6fe);
            border-color: #c4b5fd;
        }

        .exam-icon.sscexam {
            background: linear-gradient(90deg, #22c55e, #16a34a);
            color: white;
        }

        .exam-icon.jeeneet {
            background: linear-gradient(90deg, #8b5cf6, #6d28d9);
            color: white;
        }

        .detail-item.sscexam svg { color: #16a34a; }
        .detail-item.jeeneet svg { color: #7c3aed; }

        .exam-card.sscexam .btn {
            background: linear-gradient(90deg, #22c55e, #16a34a);
            color: white;
        }

        .exam-card.jeeneet .btn {
            background: linear-gradient(90deg, #8b5cf6, #6d28d9);
            color: white;
        }

@media (max-width: 1024px) {
    .exam-grid {
        grid-template-columns: 1fr;
    }
}

        .exam-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .exam-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            font-size: 24px;
        }

        .exam-icon.ssc {
            background: #38bdf8;
            color: white;
        }

        .exam-icon.upsc {
            background: linear-gradient(90deg, #fbbf24, #f97316);
            color: white;
        }

        .exam-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #1f2937;
        }

        .exam-details {
            margin-bottom: 1.5rem;
        }

        .detail-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .detail-item svg {
            width: 20px;
            height: 20px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .detail-item.ssc svg { color: #0284c7; }
        .detail-item.upsc svg { color: #ea580c; }

        .detail-label {
            font-weight: 600;
            color: #1f2937;
            display: block;
        }

        .detail-desc {
            font-size: 0.875rem;
            color: #6b7280;
        }

        /* Blog Section */
        #blog {
            background: linear-gradient(180deg, #ffffff, #f0f9ff);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .blog-card {
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid #e0f2fe;
            border-radius: 16px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            cursor: pointer;
        }

        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }

        .blog-category {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background: #dbeafe;
            color: #0369a1;
            font-size: 0.75rem;
            font-weight: 600;
            border-radius: 9999px;
            margin-bottom: 1rem;
        }

        .blog-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.75rem;
            transition: color 0.3s;
        }

        .blog-card:hover .blog-title {
            color: #0284c7;
        }

        .blog-excerpt {
            font-size: 0.875rem;
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

.blog-link {
    color: #0284c7;
    font-size: 0.875rem;
    font-weight: 500;
}

.blog-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.blog-search {
    flex: 1 1 280px;
}

.blog-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.blog-input:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}

.blog-filters {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.blog-select {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: white;
    font-size: 0.95rem;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag-chip {
    padding: 0.4rem 0.9rem;
    border-radius: 9999px;
    border: 1px solid #dbeafe;
    background: rgba(219, 234, 254, 0.7);
    color: #1f2937;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tag-chip.active,
.tag-chip:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.blog-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.blog-count {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.blog-meta {
    font-size: 0.8rem;
    color: #6b7280;
}

.blog-card {
    text-decoration: none;
    color: inherit;
}

.blog-read {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0284c7;
    text-decoration: none;
}

.blog-read:hover {
    color: #2563eb;
}

.blog-read.disabled {
    color: #9ca3af;
    cursor: not-allowed;
}

.blog-detail {
    background: linear-gradient(180deg, #ffffff, #f0f9ff);
}

.blog-detail-hero {
    max-width: 840px;
    margin: 0 auto 2rem;
    text-align: left;
}

.blog-detail-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0.75rem 0 0.5rem;
}

.blog-detail-meta {
    color: #64748b;
    font-size: 0.95rem;
}

.blog-detail-content {
    max-width: 840px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #e0f2fe;
    border-radius: 16px;
    padding: 2rem;
    color: #334155;
    line-height: 1.7;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.blog-detail-content h3 {
    margin-top: 1.5rem;
    color: #0f172a;
}

.blog-detail-actions {
    max-width: 840px;
    margin: 0 auto;
}

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid #e0f2fe;
            border-radius: 12px;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .faq-question {
            width: 100%;
            padding: 1rem 1.5rem;
            border: none;
            background: none;
            text-align: left;
            font-size: 1rem;
            font-weight: 600;
            color: #1f2937;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: #f0f9ff;
        }

        .faq-icon {
            transition: transform 0.3s;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding: 0 1.5rem;
            color: #6b7280;
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 1.5rem 1rem;
        }

        /* Contact Section */
        #contact {
            background: linear-gradient(180deg, #ffffff, #f0f9ff);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .contact-form {
            padding: 2rem;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid #e0f2fe;
            border-radius: 16px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: #374151;
            margin-bottom: 0.5rem;
        }

        .form-input, .form-textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s;
            outline: none;
        }

        .form-input:focus, .form-textarea:focus {
            border-color: #38bdf8;
            box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
        }

        .form-textarea {
            resize: none;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .info-card {
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid #e0f2fe;
            border-radius: 16px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            display: flex;
            gap: 1rem;
        }

        .info-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            flex-shrink: 0;
        }

        .info-icon.mail { background: #dbeafe; color: #0284c7; }
        .info-icon.phone { background: #fef3c7; color: #d97706; }
        .info-icon.location { background: #dbeafe; color: #2563eb; }

        .info-content h4 {
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.25rem;
        }

        .info-content p {
            color: #6b7280;
        }

        .info-content small {
            font-size: 0.875rem;
            color: #9ca3af;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #111827, #1f2937);
            color: white;
            padding: 3rem 1rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 0.5rem;
        }

        .footer-section a, .footer-section button {
            color: #9ca3af;
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s;
            border: none;
            background: none;
            cursor: pointer;
            padding: 0;
            text-align: left;
        }

        .footer-section a:hover, .footer-section button:hover {
            color: white;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .footer-text {
            color: #9ca3af;
            font-size: 0.875rem;
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid #374151;
            text-align: center;
            color: #9ca3af;
            font-size: 0.875rem;
        }

        /* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 5.5rem;
            width: 48px;
            height: 48px;
            background: linear-gradient(90deg, #38bdf8, #2563eb);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all 0.3s;
            z-index: 999;
        }

        .scroll-top.visible {
            display: flex;
        }

        .scroll-top:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }

        /* Responsive */
@media (max-width: 768px) {
            nav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-title {
                font-size: 2rem;
            }

    .hero-subtitle {
        font-size: 1.25rem;
    }

            .section-title {
                font-size: 1.75rem;
            }

    .cta-buttons {
        width: 100%;
    }
    
    section {
        padding: 3rem 1rem;
    }

    .breadcrumb {
        margin-top: 64px;
        padding: 0.5rem 1rem 0;
    }

            .btn {
                width: 100%;
            }

    .exam-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid, .blog-grid, .footer-grid {
        grid-template-columns: 1fr;
    }

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

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, minmax(280px, 1fr));
    }
    
    .hero-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
