:root {
    --dark: #0d0f1c;
    --deep-blue: #101f5b;
    --accent: #ffb703;
    --accent-soft: #ffe7ab;
    --muted: #6f7898;
    --card-bg: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.18);
    --bg-gradient: radial-gradient(circle at top left, #162355, #060915 65%);
    --shadow: 0 20px 70px rgba(6, 10, 21, 0.65);
}

/* Policy page */
body.policy-page {
    background: radial-gradient(circle at top left, #171935, #05060f 70%);
}
.policy-shell {
    padding-bottom: 4rem;
}
.policy-hero {
    padding: 4rem 0 2rem;
}
.policy-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    color: #fffdf2;
    margin-bottom: 1rem;
}
.policy-section {
    background: rgba(11, 13, 25, 0.8);
    margin-top: 2.5rem;
}
.policy-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.6rem;
}
.policy-section ul {
    padding-left: 1.4rem;
}
.policy-contact {
    list-style: none;
    padding-left: 0;
}
.policy-contact li {
    margin-bottom: 0.4rem;
}
.policy-section strong {
    color: var(--accent);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background: var(--bg-gradient);
    color: #f7f7ff;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.7;
    min-height: 100vh;
}
img {
    max-width: 100%;
    display: block;
}
a { color: inherit; text-decoration: none; }
header, main, section, footer {
    width: 100%;
    margin: 0 auto;
}
.content-shell {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: clamp(1rem, 4vw, 2.5rem);
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(6, 9, 21, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1rem;
    position: relative;
}
.brand {
    display: flex;
    flex-direction: column;
    font-family: 'Playfair Display', serif;
    color: #fffdf2;
    font-size: 1.1rem;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    width: 46px;
    height: 46px;
    border-radius: 0.8rem;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.05);
    color: #fff;
    cursor: pointer;
    margin-left: auto;
}
.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    margin: 0 auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}
.brand span {
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.15em;
}
.primary-nav {
    margin-left: auto;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: nowrap;
    overflow-x: auto;
}
nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #f2f6ff;
    padding: 0.4rem 0.2rem;
}
.nav-cta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: nowrap;
}
.nav-cta a {
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.whatsapp-btn svg {
    width: 18px;
    height: 18px;
}
@media (max-width: 900px) {
    nav ul {
        gap: 0.6rem;
    }
}
.hero {
    padding: 4rem 0 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 4.2rem);
    line-height: 1.1;
    color: #fffdf2;
}
.hero h1 span { color: var(--accent); }
.hero-highlight {
    color: var(--muted);
    font-size: 1.1rem;
}
.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.8rem 0;
}
.btn-primary {
    background: linear-gradient(120deg, #ffb703, #ff914d);
    color: #0d0f1c;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 35px rgba(255, 145, 77, 0.35);
}
.btn-outline {
    border: 1px solid var(--border);
    padding: 0.95rem 1.5rem;
    border-radius: 999px;
    font-weight: 500;
    align-items: center;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}
.stat-card {
    background: var(--card-bg);
    padding: 1.2rem;
    border-radius: 1.2rem;
    border: 1px solid var(--border);
}
.stat-card h3 {
    font-size: 2rem;
    color: var(--accent);
}
.trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0 3rem;
}
.trust-pill {
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    color: #dfe5ff;
    background: rgba(255,255,255,0.02);
}
h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 1rem;
}
.section {
    margin: 4rem 0;
    padding: 2.5rem;
    background: rgba(255,255,255,0.02);
    border-radius: 1.8rem;
    border: 1px solid var(--border);
    box-shadow: 0 12px 50px rgba(0,0,0,0.28);
}
.video-shell {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}
.video-frame {
    position: relative;
    width: clamp(500px, 65vw, 860px);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.12);
    background: #000;
    aspect-ratio: 16 / 9;
}
.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: inherit;
}
.section p { color: #d5dbf5; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.service-card {
    background: var(--card-bg);
    padding: 1.8rem;
    border-radius: 1.4rem;
    border: 1px solid var(--border);
}
.service-card svg {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    color: var(--accent);
}
.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.badge {
    background: rgba(255,183,3,0.1);
    color: var(--accent);
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    border: 1px solid rgba(255,183,3,0.3);
}
.pricing-table, .comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}
.table-scroll {
    overflow-x: auto;
}
table {
    width: 100%;
}
.pricing-table th, .pricing-table td,
.comparison-table th, .comparison-table td {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 1rem;
    text-align: left;
}
.pricing-table th, .comparison-table th {
    color: var(--accent);
    font-weight: 600;
}
.pricing-cards {
    margin-top: 3rem;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.pricing-card {
    background: rgba(16, 29, 61, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.pricing-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 1.2rem;
    border: 1px solid rgba(255,255,255,0.05);
}
.pricing-meta {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.pricing-format {
    font-weight: 600;
    font-size: 1.05rem;
}
.badge-soft {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(255,183,3,0.15);
    color: var(--accent);
    font-size: 0.9rem;
}
.pricing-amount {
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--accent);
}
.pricing-amount span {
    font-size: 0.9rem;
    color: #f1f1ff;
    font-weight: 500;
}
.pricing-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    color: #d3dbff;
}
.pricing-card ul li::before {
    content: "✔";
    margin-right: 0.4rem;
    color: var(--accent);
}
.pricing-tier {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    background: rgba(255,255,255,0.05);
    border-radius: 1rem;
    padding: 0.8rem;
    border: 1px solid rgba(255,255,255,0.08);
}
.pricing-tier strong {
    display: block;
    color: var(--accent);
    font-size: 1.3rem;
}
.pricing-tier span {
    font-size: 0.85rem;
    color: #d5dbf5;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
    margin-top: 1.8rem;
}
.gallery-item {
    position: relative;
    border-radius: 1.2rem;
    overflow: hidden;
    min-height: 220px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid var(--border);
}
.gallery-item::after {
    content: "Verified Sample";
    position: absolute;
    bottom: 0.8rem;
    right: 0.8rem;
    background: rgba(0,0,0,0.6);
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) brightness(0.92);
}
.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.4rem;
    margin-top: 1.5rem;
}
.review-card {
    border-radius: 1.2rem;
    padding: 1.5rem;
    border: 1px solid var(--border);
    background: rgba(24,32,72,0.7);
    position: relative;
    overflow: hidden;
}
.review-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,%3Csvg width="200" height="200" xmlns="http://www.w3.org/2000/svg"%3E%3Ctext x="10" y="40" fill="rgba(255,255,255,0.07)" font-size="32" font-family="sans-serif"%3EIGNOU%3C/text%3E%3C/svg%3E');
    opacity: 0.5;
}
.review-card > * { position: relative; }
ul {
    margin-left: 1.2rem;
    margin-top: 0.5rem;
}
ul li {
    margin-bottom: 0.4rem;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
.info-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 1.2rem;
    padding: 1.2rem;
}
.info-card h3 {
    color: var(--accent);
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
}
.note {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--accent);
    padding: 1rem 1.2rem;
    border-radius: 1.1rem;
    margin-top: 1rem;
}
.two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    margin-top: 1.2rem;
}
.list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0;
}
.list-grid li {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 0.9rem 1rem;
}
.numbered-steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
}
.numbered-steps li {
    counter-increment: step;
    position: relative;
    padding-left: 2.1rem;
    margin-bottom: 0.9rem;
}
.numbered-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: rgba(255, 183, 3, 0.2);
    border: 1px solid rgba(255,183,3,0.4);
    color: var(--accent);
    display: grid;
    place-items: center;
    font-weight: 600;
}
.tip-list {
    list-style: none;
    padding: 0;
}
.tip-list li {
    margin-bottom: 0.6rem;
    padding-left: 1.6rem;
    position: relative;
}
.tip-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--accent);
}
.faq-item {
    background: linear-gradient(135deg, rgba(21, 26, 52, 0.95), rgba(11, 15, 32, 0.95));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1.4rem;
    padding: 0;
    margin-bottom: 1.2rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    transition: border-color 0.25s ease, transform 0.25s ease;
}
.faq-item:hover {
    border-color: rgba(255, 183, 3, 0.5);
    transform: translateY(-2px);
}
.faq-question {
    width: 100%;
    border: none;
    background: linear-gradient(120deg, rgba(255,183,3,0.18), rgba(10,14,32,0.92));
    padding: 1.25rem 1.7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    color: #f7f8ff;
    font-size: 1.06rem;
    font-weight: 600;
    text-align: left;
    letter-spacing: 0.01em;
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.faq-question:hover {
    color: #fffdf2;
    background: linear-gradient(120deg, rgba(255,183,3,0.28), rgba(17,23,44,0.95));
}
.faq-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,183,3,0.15);
    color: var(--accent);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(255,183,3,0.15), inset 0 1px 0 rgba(255,255,255,0.4);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.faq-question:focus-visible {
    outline: 2px solid rgba(255,183,3,0.7);
    outline-offset: 3px;
    border-radius: 1.1rem;
}
.faq-answer {
    padding: 0 1.6rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: rgba(7,10,24,0.4);
    transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}
.faq-answer p,
.faq-answer ul,
.faq-answer ol {
    color: #d7dcff;
}
.faq-answer ul,
.faq-answer ol {
    margin-left: 1.1rem;
    margin-top: 0.4rem;
}
.faq-open {
    border-color: rgba(255, 183, 3, 0.6);
}
.faq-open .faq-toggle {
    background: var(--accent);
    color: #0b0f20;
    transform: rotate(45deg);
}
.faq-open .faq-answer {
    max-height: 1600px;
    opacity: 1;
    padding: 0.5rem 1.6rem 1.5rem;
    border-top-color: rgba(255,183,3,0.3);
    border-left: 1px solid rgba(255, 183, 3, 0.15);
    border-right: 1px solid rgba(255, 183, 3, 0.08);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-radius: 0 0 1.4rem 1.4rem;
    background: radial-gradient(circle at top left, rgba(255,183,3,0.12), rgba(11,14,32,0.95));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
footer {
    padding: 2rem 0 4rem;
    text-align: center;
    color: #a9b2d9;
    font-size: 0.9rem;
}
@media (max-width: 1024px) {
    .hero {
        padding: 3rem 0 2.5rem;
    }
    .section {
        padding: 2rem;
        margin: 3rem 0;
    }
    .trust-bar {
        justify-content: center;
        gap: 0.5rem;
    }
}
@media (max-width: 768px) {
    .primary-nav {
        width: calc(100% - 2rem);
        display: none;
        border-top: none;
        padding: 0.8rem 1.2rem;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(6,9,21,0.97);
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 1rem;
        margin-top: 0.6rem;
        box-shadow: 0 20px 40px rgba(0,0,0,0.45);
    }
    .primary-nav.open {
        display: block;
    }
    nav ul {
        flex-direction: column;
        gap: 0.25rem;
        padding: 0;
        overflow: visible;
    }
    nav ul li a {
        display: block;
        padding: 0.5rem 0;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-cta {
        margin-left: auto;
        gap: 0.5rem;
    }
    .hero {
        padding-top: 2.6rem;
    }
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .info-grid,
    .two-col {
        grid-template-columns: 1fr;
    }
    .links-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
}
@media (max-width: 600px) {
    body {
        font-size: 0.95rem;
    }
    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.6rem);
    }
    .section {
        padding: 1.6rem;
    }
    .trust-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .stat-card h3 {
        font-size: 1.6rem;
    }
    .gallery-item {
        min-height: 170px;
    }
    .nav-cta .btn-outline {
        display: none;
    }
    .whatsapp-btn span {
        display: none;
    }
    .whatsapp-btn {
        padding: 0.85rem;
        border-radius: 999px;
    }
    .nav-cta .btn-outline,
    .nav-cta .btn-primary,
    .cta-group .btn-outline,
    .cta-group .btn-primary {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 720px) {
    .section { padding: 1.6rem; }
    .trust-bar { justify-content: center; }
    .gallery-item { min-height: 180px; }
    .numbered-steps li { padding-left: 2.1rem; }
}

/* About page */
body.about-page {
    background: radial-gradient(circle at top left, #151936, #060915 65%);
}
.about-hero {
    padding: 4rem 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    align-items: center;
}
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.78rem;
    color: var(--muted);
}
.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    margin: 0.8rem 0 1rem;
    color: #fffdf2;
}
.about-lede {
    color: #d5dbf5;
    font-size: 1.05rem;
}
.about-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}
.about-metric-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 1.4rem;
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.about-metric-card span {
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: 600;
}
.about-section {
    background: rgba(16, 22, 52, 0.7);
}
.section-heading h2 {
    margin-top: 0.4rem;
}
.story-grid,
.about-grid,
.mission-grid,
.team-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-top: 1.5rem;
}
.story-card,
.about-card,
.mission-card,
.team-card,
.contact-card,
.value-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 1.3rem;
    padding: 1.2rem 1.4rem;
}
.about-card h3,
.mission-card h3,
.team-card h3,
.contact-card h3 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}
.mission-grid {
    grid-template-columns: minmax(220px, 320px) 1fr;
}
.values-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.value-card h4 {
    color: #fffdf2;
    margin-bottom: 0.3rem;
}
.team-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent);
    font-weight: 600;
    margin: 0.4rem 0;
}
.about-page table {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 1rem;
}
.section-heading {
    text-transform: none;
}
.section-heading .eyebrow {
    margin-bottom: 0.4rem;
}
@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
    }
    .mission-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact page */
body.contact-page {
    background: radial-gradient(circle at top left, #111430, #050814 70%);
}
.contact-hero {
    padding: 4rem 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    align-items: center;
}
.contact-highlight {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    color: var(--muted);
}
.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4vw, 3.3rem);
    color: #fffdf2;
    margin: 0.8rem 0 1rem;
}
.contact-lede {
    color: #d5dbf5;
    font-size: 1.05rem;
}
.contact-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.contact-summary-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 1.4rem;
    padding: 1.4rem;
}
.contact-section {
    background: rgba(10, 13, 32, 0.85);
}
.visit-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 1.4rem;
    padding: 1.6rem;
    margin-top: 1.2rem;
}
.contact-form {
    margin-top: 1.5rem;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 1.8rem;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem 1.2rem;
}
.form-grid label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--muted);
}
.form-grid label span {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    color: #dfe5ff;
}
.form-grid input,
.form-grid textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 0.9rem;
    padding: 0.85rem 1rem;
    color: #fff;
    font-family: inherit;
}
.form-grid textarea {
    resize: vertical;
}
.form-grid .full-width {
    grid-column: 1 / -1;
}
.contact-page button.btn-primary {
    margin-top: 1.2rem;
}
.contact-grid + .btn-outline {
    margin-top: 1rem;
}
@media (max-width: 768px) {
    .contact-hero {
        grid-template-columns: 1fr;
    }
}

/* Front page specific styling */
body.front-page {
    --bg: #040615;
    --surface: #0d1328;
    --accent: #ffb703;
    --accent-soft: #ffe8b0;
    --text: #f5f6ff;
    --muted: #9aa3c5;
    --border: rgba(255,255,255,0.1);
    --shadow: 0 20px 60px rgba(0,0,0,0.45);
    background: radial-gradient(circle at top, #101c44, #040615 70%);
    color: var(--text);
    line-height: 1.7;
}

body.front-page main {
    padding: clamp(1.5rem, 4vw, 3rem) 0 4rem;
}

.front-page header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 0.8rem;
}

.front-page header p {
    color: var(--muted);
}

.front-page section {
    margin-top: 2.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: clamp(1.4rem, 3vw, 2rem);
}

.front-page h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 0.8rem;
}

.front-page .tagline {
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
    font-size: 0.95rem;
    color: var(--accent-soft);
}

.front-page .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.front-page .card {
    background: var(--surface);
    border-radius: 1rem;
    padding: 1.1rem 1.3rem;
    border: 1px solid var(--border);
}

.front-page .download-list {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.front-page .download-option {
    width: 100%;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.front-page .download-option.active {
    background: linear-gradient(120deg, #ffb703, #ff914d);
    color: #0d0f1c;
    border-color: transparent;
    box-shadow: 0 10px 35px rgba(255,145,77,0.25);
}

.front-page .download-option:not(.active):hover {
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.front-page .preview-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 1.3rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 20px 45px rgba(0,0,0,0.4);
}

.front-page .preview-frame {
    width: 100%;
    background: radial-gradient(circle at top, rgba(255,255,255,0.08), rgba(6,9,21,0.9));
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.front-page .preview-frame::before {
    content: "";
    display: block;
    width: clamp(220px, 45vw, 587px);
    height: clamp(320px, 60vw, 758px);
}

.front-page .preview-frame img {
    width: clamp(220px, 45vw, 587px);
    height: clamp(320px, 60vw, 758px);
    object-fit: cover;
    border-radius: 0.6rem;
    box-shadow: 0 30px 55px rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.1);
    background: #050819;
}

.front-page .preview-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.front-page .preview-title {
    font-weight: 600;
    color: #fffdf2;
    font-size: 1.05rem;
}

.front-page .preview-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.front-page .preview-buttons .btn {
    flex: 1;
    justify-content: center;
}

.front-page .preview-buttons .btn-outline {
    border-color: rgba(255,255,255,0.25);
}

.front-page .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.85rem 1.3rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
}

.front-page .front-page-downloads {
    background: rgba(11,14,35,0.8);
}

.front-page .download-gallery {
    display: grid;
    grid-template-columns: minmax(220px, 360px) 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.front-page .faq-item h3 {
    color: var(--accent);
}

.ignou-brand-alert{
    background:#fff8e1;
    border:2px solid #ffcc80;
    border-left:6px solid #ff9800;
    padding:22px;
    margin:40px auto;
    max-width:1000px;
    font-size:15px;
    line-height:1.8;
    color:#333;
}
.ignou-brand-alert h2{
    margin-top:0;
    color:#e65100;
    font-size:22px;
    line-height:1.3;
}
.ignou-brand-alert strong{
    color:#000;
}
.alert-note{
    font-size:13px;
    color:#555;
    margin-top:12px;
}
@media(max-width:480px){
    .ignou-brand-alert{
        font-size:14px;
        padding:18px;
    }
    .ignou-brand-alert h2{
        font-size:19px;
    }
}

.ignou-reviews-wrapper {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 15px;
  font-family: system-ui, Arial, sans-serif;
  text-align: center;
}

.ignou-reviews-wrapper h2 {
  font-size: 28px;
  margin-bottom: 6px;
}

.reviews-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.reviews-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 280px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  text-align: left;
  position: relative;
}

.course-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #eef2ff;
  color: #1d4ed8;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 600;
}

.review-card h4 {
  font-size: 15px;
  margin-bottom: 2px;
}

.review-meta {
  font-size: 12px;
  color: #777;
  margin-bottom: 6px;
}

.stars {
  color: #ffb400;
  font-size: 15px;
  margin-bottom: 6px;
}

.review-text {
  font-size: 13px;
  line-height: 1.45;
  color: #333;
}

.review-date {
  display: block;
  font-size: 11px;
  color: #777;
  margin-top: 8px;
}

.review-card h4{
    color:black;
}







/* ===== Premium Accordion Wrapper ===== */
.accordion {
  max-width: 100%;
  margin: 30px 0;
}

/* ===== Card Style ===== */
.accordion-item {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
}

/* ===== Heading ===== */
.accordion-title {
  cursor: pointer;
  padding: 18px 56px 18px 22px;
  font-size: 19px;
  font-weight: 700;
  background: linear-gradient(135deg, #0f2a44, #173f6a);
  color: #ffffff;
  position: relative;
  line-height: 1.4;
}

/* ===== Icon ===== */
.accordion-title::after {
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.accordion-title::before {
  content: "+";
  position: absolute;
  right: 27px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.accordion-title.active::before {
  content: "–";
}

/* ===== Content Animation ===== */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  transition: max-height 0.5s ease, padding 0.4s ease;
  padding: 0 22px;
}

/* Open State */
.accordion-title.active + .accordion-content {
  padding: 22px;
  max-height: 4000px;
}

/* ===== List Style ===== */
.accordion-content ul {
  columns: 2;
  column-gap: 30px;
  padding-left: 0;
  margin: 0;
}

.accordion-content li {
  list-style: none;
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 15.5px;
  color: #333;
  break-inside: avoid;
}

/* Bullet */
.accordion-content li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0f2a44;
  font-size: 14px;
}

/* ===== Mobile Optimization ===== */
@media (max-width: 768px) {
  .accordion-content ul {
    columns: 1;
  }

  .accordion-title {
    font-size: 17px;
    padding: 16px 52px 16px 18px;
  }
}










.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #f5f7ff;
  border: 1px solid #dfe4ff;
  border-radius: 30px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
}

.rating-score {
  font-weight: 700;
  color: #000;
}

.stars {
  color: #ffb400; /* star yellow */
  font-size: 14px;
  letter-spacing: 1px;
}

.rating-text {
  color: #555;
  font-weight: 500;
}

.rating-badge {
  margin: 0 auto;
}


/* Fonts Import - Global Level par rahega */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Clash+Display:wght@500;600;700&display=swap');

/* Main Wrapper Class (Jo Pehle Body aur * tha) */
.novaContainer {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, rgba(255, 106, 0, 0.18), transparent 45%),
              linear-gradient(160deg, #050b1f, #1b1443);
  color: #f5f7ff;
  min-height: 100vh;
  padding: 32px 20px 60px;
  box-sizing: border-box;
}

/* Box Sizing Class */
.novaBoxSizing, .novaBoxSizing * {
  box-sizing: border-box;
}

.novaFrame93 {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.solarIntroVX {
  background: linear-gradient(135deg, rgba(255, 128, 0, 0.15), rgba(41, 122, 255, 0.1));
  border-radius: 32px;
  padding: 46px;
  box-shadow: 0 25px 60px rgba(5, 9, 28, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.flareChipQ1 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(120deg, #ffcc70, #ff8177);
  color: #1b1443;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.galaxyHeadliner72 {
  font-family: "Clash Display", "Space Grotesk", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
}

.galaxyHeadliner72 span {
  color: #f79f1f;
}

.pulseActionsDD {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pulseActionsDD button {
  border: none;
  border-radius: 20px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: #0f0a1b;
}

.ctaPrimeFlux {
  background: linear-gradient(135deg, #ffb347, #ffcc33 60%, #ff8f00);
  box-shadow: 0 15px 30px rgba(255, 149, 5, 0.4);
  color: #1a140d !important;
}

.ctaGhostFlux {
  background: transparent;
  color: #f5f7ff;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.pulseActionsDD button:hover {
  transform: translateY(-3px);
}

.binarySlate88 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.quantumModuleLX {
  background: #101634;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 25px 60px rgba(5, 9, 28, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.quantumModuleLX::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 204, 112, 0.35), rgba(29, 209, 161, 0.25));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.moduleTopGrid14 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.moduleTopGrid14 h2 {
  font-size: 24px;
  margin: 0;
  font-family: "Clash Display", "Space Grotesk", sans-serif;
}

.moduleSubtext14 {
  color: #c1c7ff;
  font-size: 14px;
  margin-top: 6px;
}

.costPill77 {
  display: block;
  font-weight: 700;
  color: #0f0a1b;
  background: linear-gradient(135deg, #ffb347, #ffcc33 60%, #ff8f00);
  border-radius: 999px;
  padding: 8px 18px;
  white-space: nowrap;
  font-size: 13px;
  margin-bottom: 10px;
  box-shadow: 0 8px 20px rgba(255, 156, 24, 0.4);
}

.fusionFormCore {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fluxFieldBox {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fluxFieldBox label {
  font-weight: 600;
  font-size: 14px;
  color: #c1c7ff;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.stellarProgramKey,
.epochSessionKey,
.lingoMediumKey,
.spectraSubjectPad {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.02);
  color: #f5f7ff;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.epochSessionKey option,
.lingoMediumKey option {
  color: #0f0a1b;
  background: #ffffff;
}

.stellarProgramKey:focus,
.epochSessionKey:focus,
.lingoMediumKey:focus,
.spectraSubjectPad:focus {
  outline: none;
  border-color: #f79f1f;
  box-shadow: 0 0 0 3px rgba(255, 166, 43, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.spectraSubjectPad {
  resize: vertical;
  min-height: 120px;
}

.helper-text {
  font-size: 13px;
  color: rgba(193, 199, 255, 0.8);
}

.codeChips99 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.codeChips99 span {
  background: rgba(247, 159, 31, 0.1);
  color: #f79f1f;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
}

.summaryTable99 {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.summaryTable99 td {
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.summaryTable99 td:first-child {
  color: #c1c7ff;
  width: 40%;
}

.summaryAccent99 {
  color: #f79f1f;
  font-weight: 600;
}

.summaryReveal88 {
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 20px;
  background: rgba(10, 15, 40, 0.75);
  display: none;
  animation: fadeIn 0.3s ease forwards;
}

.summaryReveal88.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.igniteButton {
  margin-top: 12px;
  padding: 16px;
  border-radius: 20px;
  border: none;
  background: linear-gradient(135deg, #ffb347, #ffcc33 60%, #ff8f00);
  color: #1a140d;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 18px 35px rgba(255, 149, 5, 0.35);
}

.igniteButton:hover {
  transform: translateY(-3px);
}

.auxiliaryDeck55 {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.auxCard21 {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 18px;
  background: rgba(20, 24, 54, 0.9);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.auxCard21 h4 {
  margin: 0 0 10px 0;
  font-size: 16px;
  color: #f79f1f;
}

.auxCard21 ul {
  margin: 0;
  padding-left: 18px;
  color: #c1c7ff;
  font-size: 13px;
  line-height: 1.5;
}

.catalogVault42 {
  background: rgba(10, 13, 32, 0.85);
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 25px 60px rgba(5, 9, 28, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.catalogVault42 h3 {
  font-size: 24px;
  margin: 0 0 12px 0;
  font-family: "Clash Display", "Space Grotesk", sans-serif;
}

.catalogVault42 p {
  color: #c1c7ff;
  font-size: 14px;
  margin-bottom: 20px;
}

.catalogColumns42 {
  column-count: 2;
  column-gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 420px;
  overflow-y: auto;
}

.catalogColumns42 li {
  break-inside: avoid;
  padding: 4px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
}

/* Media Queries */
@media (max-width: 900px) {
  .binarySlate88 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .novaContainer {
    padding: 20px 14px 40px;
  }
  .solarIntroVX {
    padding: 26px;
  }
  .quantumModuleLX,
  .catalogVault42 {
    padding: 22px;
  }
  .catalogColumns42 {
    column-count: 1;
    max-height: 500px;
  }
  .video-frame {
    width: 100%;
  }
}

:root {
    --dark: #0d0f1c;
    --deep-blue: #101f5b;
    --accent: #ffb703;
    --accent-soft: #ffe7ab;
    --muted: #6f7898;
    --card-bg: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.18);
    --bg-gradient: radial-gradient(circle at top left, #162355, #060915 65%);
    --shadow: 0 20px 70px rgba(6, 10, 21, 0.65);
}

/* Policy page */
body.policy-page {
    background: radial-gradient(circle at top left, #171935, #05060f 70%);
}
.policy-shell {
    padding-bottom: 4rem;
}
.policy-hero {
    padding: 4rem 0 2rem;
}
.policy-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    color: #fffdf2;
    margin-bottom: 1rem;
}
.policy-section {
    background: rgba(11, 13, 25, 0.8);
    margin-top: 2.5rem;
}
.policy-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.6rem;
}
.policy-section ul {
    padding-left: 1.4rem;
}
.policy-contact {
    list-style: none;
    padding-left: 0;
}
.policy-contact li {
    margin-bottom: 0.4rem;
}
.policy-section strong {
    color: var(--accent);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background: var(--bg-gradient);
    color: #f7f7ff;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.7;
    min-height: 100vh;
}
img {
    max-width: 100%;
    display: block;
}
a { color: inherit; text-decoration: none; }
header, main, section, footer {
    width: 100%;
    margin: 0 auto;
}
.content-shell {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: clamp(1rem, 4vw, 2.5rem);
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(6, 9, 21, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1rem;
    position: relative;
}
.brand {
    display: flex;
    flex-direction: column;
    font-family: 'Playfair Display', serif;
    color: #fffdf2;
    font-size: 1.1rem;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    width: 46px;
    height: 46px;
    border-radius: 0.8rem;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.05);
    color: #fff;
    cursor: pointer;
    margin-left: auto;
}
.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    margin: 0 auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}
.brand span {
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.15em;
}
.primary-nav {
    margin-left: auto;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: nowrap;
    overflow-x: auto;
}
nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #f2f6ff;
    padding: 0.4rem 0.2rem;
}
.nav-cta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: nowrap;
}
.nav-cta a {
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.whatsapp-btn svg {
    width: 18px;
    height: 18px;
}
@media (max-width: 900px) {
    nav ul {
        gap: 0.6rem;
    }
}
.hero {
    padding: 4rem 0 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 4.2rem);
    line-height: 1.1;
    color: #fffdf2;
}
.hero h1 span { color: var(--accent); }
.hero-highlight {
    color: var(--muted);
    font-size: 1.1rem;
}
.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.8rem 0;
}
.btn-primary {
    background: linear-gradient(120deg, #ffb703, #ff914d);
    color: #0d0f1c;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 35px rgba(255, 145, 77, 0.35);
}
.btn-outline {
    border: 1px solid var(--border);
    padding: 0.95rem 1.5rem;
    border-radius: 999px;
    font-weight: 500;
    align-items: center;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}
.stat-card {
    background: var(--card-bg);
    padding: 1.2rem;
    border-radius: 1.2rem;
    border: 1px solid var(--border);
}
.stat-card h3 {
    font-size: 2rem;
    color: var(--accent);
}
.trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0 3rem;
}
.trust-pill {
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    color: #dfe5ff;
    background: rgba(255,255,255,0.02);
}
h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 1rem;
}
.section {
    margin: 4rem 0;
    padding: 2.5rem;
    background: rgba(255,255,255,0.02);
    border-radius: 1.8rem;
    border: 1px solid var(--border);
    box-shadow: 0 12px 50px rgba(0,0,0,0.28);
}
.video-shell {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}
.video-frame {
    position: relative;
    width: clamp(500px, 65vw, 860px);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.12);
    background: #000;
    aspect-ratio: 16 / 9;
}
.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: inherit;
}
.section p { color: #d5dbf5; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.service-card {
    background: var(--card-bg);
    padding: 1.8rem;
    border-radius: 1.4rem;
    border: 1px solid var(--border);
}
.service-card svg {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    color: var(--accent);
}
.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.badge {
    background: rgba(255,183,3,0.1);
    color: var(--accent);
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    border: 1px solid rgba(255,183,3,0.3);
}
.pricing-table, .comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}
.table-scroll {
    overflow-x: auto;
}
table {
    width: 100%;
}
.pricing-table th, .pricing-table td,
.comparison-table th, .comparison-table td {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 1rem;
    text-align: left;
}
.pricing-table th, .comparison-table th {
    color: var(--accent);
    font-weight: 600;
}
.pricing-cards {
    margin-top: 3rem;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.pricing-card {
    background: rgba(16, 29, 61, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.pricing-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 1.2rem;
    border: 1px solid rgba(255,255,255,0.05);
}
.pricing-meta {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.pricing-format {
    font-weight: 600;
    font-size: 1.05rem;
}
.badge-soft {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(255,183,3,0.15);
    color: var(--accent);
    font-size: 0.9rem;
}
.pricing-amount {
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--accent);
}
.pricing-amount span {
    font-size: 0.9rem;
    color: #f1f1ff;
    font-weight: 500;
}
.pricing-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    color: #d3dbff;
}
.pricing-card ul li::before {
    content: "✔";
    margin-right: 0.4rem;
    color: var(--accent);
}
.pricing-tier {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    background: rgba(255,255,255,0.05);
    border-radius: 1rem;
    padding: 0.8rem;
    border: 1px solid rgba(255,255,255,0.08);
}
.pricing-tier strong {
    display: block;
    color: var(--accent);
    font-size: 1.3rem;
}
.pricing-tier span {
    font-size: 0.85rem;
    color: #d5dbf5;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
    margin-top: 1.8rem;
}
.gallery-item {
    position: relative;
    border-radius: 1.2rem;
    overflow: hidden;
    min-height: 220px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid var(--border);
}
.gallery-item::after {
    content: "Verified Sample";
    position: absolute;
    bottom: 0.8rem;
    right: 0.8rem;
    background: rgba(0,0,0,0.6);
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) brightness(0.92);
}
.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.4rem;
    margin-top: 1.5rem;
}
.review-card {
    border-radius: 1.2rem;
    padding: 1.5rem;
    border: 1px solid var(--border);
    background: rgba(24,32,72,0.7);
    position: relative;
    overflow: hidden;
}
.review-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,%3Csvg width="200" height="200" xmlns="http://www.w3.org/2000/svg"%3E%3Ctext x="10" y="40" fill="rgba(255,255,255,0.07)" font-size="32" font-family="sans-serif"%3EIGNOU%3C/text%3E%3C/svg%3E');
    opacity: 0.5;
}
.review-card > * { position: relative; }
ul {
    margin-left: 1.2rem;
    margin-top: 0.5rem;
}
ul li {
    margin-bottom: 0.4rem;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
.info-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 1.2rem;
    padding: 1.2rem;
}
.info-card h3 {
    color: var(--accent);
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
}
.note {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--accent);
    padding: 1rem 1.2rem;
    border-radius: 1.1rem;
    margin-top: 1rem;
}
.two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    margin-top: 1.2rem;
}
.list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0;
}
.list-grid li {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 0.9rem 1rem;
}
.numbered-steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
}
.numbered-steps li {
    counter-increment: step;
    position: relative;
    padding-left: 2.1rem;
    margin-bottom: 0.9rem;
}
.numbered-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: rgba(255, 183, 3, 0.2);
    border: 1px solid rgba(255,183,3,0.4);
    color: var(--accent);
    display: grid;
    place-items: center;
    font-weight: 600;
}
.tip-list {
    list-style: none;
    padding: 0;
}
.tip-list li {
    margin-bottom: 0.6rem;
    padding-left: 1.6rem;
    position: relative;
}
.tip-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--accent);
}
.faq-item {
    background: linear-gradient(135deg, rgba(21, 26, 52, 0.95), rgba(11, 15, 32, 0.95));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1.4rem;
    padding: 0;
    margin-bottom: 1.2rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    transition: border-color 0.25s ease, transform 0.25s ease;
}
.faq-item:hover {
    border-color: rgba(255, 183, 3, 0.5);
    transform: translateY(-2px);
}
.faq-question {
    width: 100%;
    border: none;
    background: linear-gradient(120deg, rgba(255,183,3,0.18), rgba(10,14,32,0.92));
    padding: 1.25rem 1.7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    color: #f7f8ff;
    font-size: 1.06rem;
    font-weight: 600;
    text-align: left;
    letter-spacing: 0.01em;
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.faq-question:hover {
    color: #fffdf2;
    background: linear-gradient(120deg, rgba(255,183,3,0.28), rgba(17,23,44,0.95));
}
.faq-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,183,3,0.15);
    color: var(--accent);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(255,183,3,0.15), inset 0 1px 0 rgba(255,255,255,0.4);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.faq-question:focus-visible {
    outline: 2px solid rgba(255,183,3,0.7);
    outline-offset: 3px;
    border-radius: 1.1rem;
}
.faq-answer {
    padding: 0 1.6rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: rgba(7,10,24,0.4);
    transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}
.faq-answer p,
.faq-answer ul,
.faq-answer ol {
    color: #d7dcff;
}
.faq-answer ul,
.faq-answer ol {
    margin-left: 1.1rem;
    margin-top: 0.4rem;
}
.faq-open {
    border-color: rgba(255, 183, 3, 0.6);
}
.faq-open .faq-toggle {
    background: var(--accent);
    color: #0b0f20;
    transform: rotate(45deg);
}
.faq-open .faq-answer {
    max-height: 1600px;
    opacity: 1;
    padding: 0.5rem 1.6rem 1.5rem;
    border-top-color: rgba(255,183,3,0.3);
    border-left: 1px solid rgba(255, 183, 3, 0.15);
    border-right: 1px solid rgba(255, 183, 3, 0.08);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-radius: 0 0 1.4rem 1.4rem;
    background: radial-gradient(circle at top left, rgba(255,183,3,0.12), rgba(11,14,32,0.95));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
footer {
    padding: 2rem 0 4rem;
    text-align: center;
    color: #a9b2d9;
    font-size: 0.9rem;
}
@media (max-width: 1024px) {
    .hero {
        padding: 3rem 0 2.5rem;
    }
    .section {
        padding: 2rem;
        margin: 3rem 0;
    }
    .trust-bar {
        justify-content: center;
        gap: 0.5rem;
    }
}
@media (max-width: 768px) {
    .primary-nav {
        width: calc(100% - 2rem);
        display: none;
        border-top: none;
        padding: 0.8rem 1.2rem;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(6,9,21,0.97);
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 1rem;
        margin-top: 0.6rem;
        box-shadow: 0 20px 40px rgba(0,0,0,0.45);
    }
    .primary-nav.open {
        display: block;
    }
    nav ul {
        flex-direction: column;
        gap: 0.25rem;
        padding: 0;
        overflow: visible;
    }
    nav ul li a {
        display: block;
        padding: 0.5rem 0;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-cta {
        margin-left: auto;
        gap: 0.5rem;
    }
    .hero {
        padding-top: 2.6rem;
    }
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .info-grid,
    .two-col {
        grid-template-columns: 1fr;
    }
    .links-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
}
@media (max-width: 600px) {
    body {
        font-size: 0.95rem;
    }
    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.6rem);
    }
    .section {
        padding: 1.6rem;
    }
    .trust-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .stat-card h3 {
        font-size: 1.6rem;
    }
    .gallery-item {
        min-height: 170px;
    }
    .nav-cta .btn-outline {
        display: none;
    }
    .whatsapp-btn span {
        display: none;
    }
    .whatsapp-btn {
        padding: 0.85rem;
        border-radius: 999px;
    }
    .nav-cta .btn-outline,
    .nav-cta .btn-primary,
    .cta-group .btn-outline,
    .cta-group .btn-primary {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 720px) {
    .section { padding: 1.6rem; }
    .trust-bar { justify-content: center; }
    .gallery-item { min-height: 180px; }
    .numbered-steps li { padding-left: 2.1rem; }
}

/* About page */
body.about-page {
    background: radial-gradient(circle at top left, #151936, #060915 65%);
}
.about-hero {
    padding: 4rem 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    align-items: center;
}
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.78rem;
    color: var(--muted);
}
.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    margin: 0.8rem 0 1rem;
    color: #fffdf2;
}
.about-lede {
    color: #d5dbf5;
    font-size: 1.05rem;
}
.about-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}
.about-metric-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 1.4rem;
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.about-metric-card span {
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: 600;
}
.about-section {
    background: rgba(16, 22, 52, 0.7);
}
.section-heading h2 {
    margin-top: 0.4rem;
}
.story-grid,
.about-grid,
.mission-grid,
.team-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-top: 1.5rem;
}
.story-card,
.about-card,
.mission-card,
.team-card,
.contact-card,
.value-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 1.3rem;
    padding: 1.2rem 1.4rem;
}
.about-card h3,
.mission-card h3,
.team-card h3,
.contact-card h3 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}
.mission-grid {
    grid-template-columns: minmax(220px, 320px) 1fr;
}
.values-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.value-card h4 {
    color: #fffdf2;
    margin-bottom: 0.3rem;
}
.team-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent);
    font-weight: 600;
    margin: 0.4rem 0;
}
.about-page table {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 1rem;
}
.section-heading {
    text-transform: none;
}
.section-heading .eyebrow {
    margin-bottom: 0.4rem;
}
@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
    }
    .mission-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact page */
body.contact-page {
    background: radial-gradient(circle at top left, #111430, #050814 70%);
}
.contact-hero {
    padding: 4rem 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    align-items: center;
}
.contact-highlight {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    color: var(--muted);
}
.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4vw, 3.3rem);
    color: #fffdf2;
    margin: 0.8rem 0 1rem;
}
.contact-lede {
    color: #d5dbf5;
    font-size: 1.05rem;
}
.contact-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.contact-summary-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 1.4rem;
    padding: 1.4rem;
}
.contact-section {
    background: rgba(10, 13, 32, 0.85);
}
.visit-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 1.4rem;
    padding: 1.6rem;
    margin-top: 1.2rem;
}
.contact-form {
    margin-top: 1.5rem;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 1.8rem;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem 1.2rem;
}
.form-grid label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--muted);
}
.form-grid label span {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    color: #dfe5ff;
}
.form-grid input,
.form-grid textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 0.9rem;
    padding: 0.85rem 1rem;
    color: #fff;
    font-family: inherit;
}
.form-grid textarea {
    resize: vertical;
}
.form-grid .full-width {
    grid-column: 1 / -1;
}
.contact-page button.btn-primary {
    margin-top: 1.2rem;
}
.contact-grid + .btn-outline {
    margin-top: 1rem;
}
@media (max-width: 768px) {
    .contact-hero {
        grid-template-columns: 1fr;
    }
}

/* Front page specific styling */
body.front-page {
    --bg: #040615;
    --surface: #0d1328;
    --accent: #ffb703;
    --accent-soft: #ffe8b0;
    --text: #f5f6ff;
    --muted: #9aa3c5;
    --border: rgba(255,255,255,0.1);
    --shadow: 0 20px 60px rgba(0,0,0,0.45);
    background: radial-gradient(circle at top, #101c44, #040615 70%);
    color: var(--text);
    line-height: 1.7;
}

body.front-page main {
    padding: clamp(1.5rem, 4vw, 3rem) 0 4rem;
}

.front-page header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 0.8rem;
}

.front-page header p {
    color: var(--muted);
}

.front-page section {
    margin-top: 2.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: clamp(1.4rem, 3vw, 2rem);
}

.front-page h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 0.8rem;
}

.front-page .tagline {
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
    font-size: 0.95rem;
    color: var(--accent-soft);
}

.front-page .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.front-page .card {
    background: var(--surface);
    border-radius: 1rem;
    padding: 1.1rem 1.3rem;
    border: 1px solid var(--border);
}

.front-page .download-list {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.front-page .download-option {
    width: 100%;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.front-page .download-option.active {
    background: linear-gradient(120deg, #ffb703, #ff914d);
    color: #0d0f1c;
    border-color: transparent;
    box-shadow: 0 10px 35px rgba(255,145,77,0.25);
}

.front-page .download-option:not(.active):hover {
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.front-page .preview-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 1.3rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 20px 45px rgba(0,0,0,0.4);
}

.front-page .preview-frame {
    width: 100%;
    background: radial-gradient(circle at top, rgba(255,255,255,0.08), rgba(6,9,21,0.9));
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.front-page .preview-frame::before {
    content: "";
    display: block;
    width: clamp(220px, 45vw, 587px);
    height: clamp(320px, 60vw, 758px);
}

.front-page .preview-frame img {
    width: clamp(220px, 45vw, 587px);
    height: clamp(320px, 60vw, 758px);
    object-fit: cover;
    border-radius: 0.6rem;
    box-shadow: 0 30px 55px rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.1);
    background: #050819;
}

.front-page .preview-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.front-page .preview-title {
    font-weight: 600;
    color: #fffdf2;
    font-size: 1.05rem;
}

.front-page .preview-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.front-page .preview-buttons .btn {
    flex: 1;
    justify-content: center;
}

.front-page .preview-buttons .btn-outline {
    border-color: rgba(255,255,255,0.25);
}

.front-page .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.85rem 1.3rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
}

.front-page .front-page-downloads {
    background: rgba(11,14,35,0.8);
}

.front-page .download-gallery {
    display: grid;
    grid-template-columns: minmax(220px, 360px) 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.front-page .faq-item h3 {
    color: var(--accent);
}

.ignou-brand-alert{
    background:#fff8e1;
    border:2px solid #ffcc80;
    border-left:6px solid #ff9800;
    padding:22px;
    margin:40px auto;
    max-width:1000px;
    font-size:15px;
    line-height:1.8;
    color:#333;
}
.ignou-brand-alert h2{
    margin-top:0;
    color:#e65100;
    font-size:22px;
    line-height:1.3;
}
.ignou-brand-alert strong{
    color:#000;
}
.alert-note{
    font-size:13px;
    color:#555;
    margin-top:12px;
}
@media(max-width:480px){
    .ignou-brand-alert{
        font-size:14px;
        padding:18px;
    }
    .ignou-brand-alert h2{
        font-size:19px;
    }
}

.ignou-reviews-wrapper {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 15px;
  font-family: system-ui, Arial, sans-serif;
  text-align: center;
}

.ignou-reviews-wrapper h2 {
  font-size: 28px;
  margin-bottom: 6px;
}

.reviews-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.reviews-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 280px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  text-align: left;
  position: relative;
}

.course-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #eef2ff;
  color: #1d4ed8;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 600;
}

.review-card h4 {
  font-size: 15px;
  margin-bottom: 2px;
}

.review-meta {
  font-size: 12px;
  color: #777;
  margin-bottom: 6px;
}

.stars {
  color: #ffb400;
  font-size: 15px;
  margin-bottom: 6px;
}

.review-text {
  font-size: 13px;
  line-height: 1.45;
  color: #333;
}

.review-date {
  display: block;
  font-size: 11px;
  color: #777;
  margin-top: 8px;
}

.review-card h4{
    color:black;
}







/* ===== Premium Accordion Wrapper ===== */
.accordion {
  max-width: 100%;
  margin: 30px 0;
}

/* ===== Card Style ===== */
.accordion-item {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
}

/* ===== Heading ===== */
.accordion-title {
  cursor: pointer;
  padding: 18px 56px 18px 22px;
  font-size: 19px;
  font-weight: 700;
  background: linear-gradient(135deg, #0f2a44, #173f6a);
  color: #ffffff;
  position: relative;
  line-height: 1.4;
}

/* ===== Icon ===== */
.accordion-title::after {
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.accordion-title::before {
  content: "+";
  position: absolute;
  right: 27px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.accordion-title.active::before {
  content: "–";
}

/* ===== Content Animation ===== */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  transition: max-height 0.5s ease, padding 0.4s ease;
  padding: 0 22px;
}

/* Open State */
.accordion-title.active + .accordion-content {
  padding: 22px;
  max-height: 4000px;
}

/* ===== List Style ===== */
.accordion-content ul {
  columns: 2;
  column-gap: 30px;
  padding-left: 0;
  margin: 0;
}

.accordion-content li {
  list-style: none;
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 15.5px;
  color: #333;
  break-inside: avoid;
}

/* Bullet */
.accordion-content li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0f2a44;
  font-size: 14px;
}

/* ===== Mobile Optimization ===== */
@media (max-width: 768px) {
  .accordion-content ul {
    columns: 1;
  }

  .accordion-title {
    font-size: 17px;
    padding: 16px 52px 16px 18px;
  }
}










.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #f5f7ff;
  border: 1px solid #dfe4ff;
  border-radius: 30px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
}

.rating-score {
  font-weight: 700;
  color: #000;
}

.stars {
  color: #ffb400; /* star yellow */
  font-size: 14px;
  letter-spacing: 1px;
}

.rating-text {
  color: #555;
  font-weight: 500;
}

.rating-badge {
  margin: 0 auto;
}


/* Fonts Import - Global Level par rahega */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Clash+Display:wght@500;600;700&display=swap');

/* Main Wrapper Class (Jo Pehle Body aur * tha) */
.novaContainer {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, rgba(255, 106, 0, 0.18), transparent 45%),
              linear-gradient(160deg, #050b1f, #1b1443);
  color: #f5f7ff;
  min-height: 100vh;
  padding: 32px 20px 60px;
  box-sizing: border-box;
}

/* Box Sizing Class */
.novaBoxSizing, .novaBoxSizing * {
  box-sizing: border-box;
}

.novaFrame93 {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.solarIntroVX {
  background: linear-gradient(135deg, rgba(255, 128, 0, 0.15), rgba(41, 122, 255, 0.1));
  border-radius: 32px;
  padding: 46px;
  box-shadow: 0 25px 60px rgba(5, 9, 28, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.flareChipQ1 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(120deg, #ffcc70, #ff8177);
  color: #1b1443;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.galaxyHeadliner72 {
  font-family: "Clash Display", "Space Grotesk", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
}

.galaxyHeadliner72 span {
  color: #f79f1f;
}

.pulseActionsDD {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pulseActionsDD button {
  border: none;
  border-radius: 20px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: #0f0a1b;
}

.ctaPrimeFlux {
  background: linear-gradient(135deg, #ffb347, #ffcc33 60%, #ff8f00);
  box-shadow: 0 15px 30px rgba(255, 149, 5, 0.4);
  color: #1a140d !important;
}

.ctaGhostFlux {
  background: transparent;
  color: #f5f7ff;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.pulseActionsDD button:hover {
  transform: translateY(-3px);
}

.binarySlate88 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.quantumModuleLX {
  background: #101634;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 25px 60px rgba(5, 9, 28, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.quantumModuleLX::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 204, 112, 0.35), rgba(29, 209, 161, 0.25));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.moduleTopGrid14 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.moduleTopGrid14 h2 {
  font-size: 24px;
  margin: 0;
  font-family: "Clash Display", "Space Grotesk", sans-serif;
}

.moduleSubtext14 {
  color: #c1c7ff;
  font-size: 14px;
  margin-top: 6px;
}

.costPill77 {
  display: block;
  font-weight: 700;
  color: #0f0a1b;
  background: linear-gradient(135deg, #ffb347, #ffcc33 60%, #ff8f00);
  border-radius: 999px;
  padding: 8px 18px;
  white-space: nowrap;
  font-size: 13px;
  margin-bottom: 10px;
  box-shadow: 0 8px 20px rgba(255, 156, 24, 0.4);
}

.fusionFormCore {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fluxFieldBox {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fluxFieldBox label {
  font-weight: 600;
  font-size: 14px;
  color: #c1c7ff;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.stellarProgramKey,
.epochSessionKey,
.lingoMediumKey,
.spectraSubjectPad {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.02);
  color: #f5f7ff;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.epochSessionKey option,
.lingoMediumKey option {
  color: #0f0a1b;
  background: #ffffff;
}

.stellarProgramKey:focus,
.epochSessionKey:focus,
.lingoMediumKey:focus,
.spectraSubjectPad:focus {
  outline: none;
  border-color: #f79f1f;
  box-shadow: 0 0 0 3px rgba(255, 166, 43, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.spectraSubjectPad {
  resize: vertical;
  min-height: 120px;
}

.helper-text {
  font-size: 13px;
  color: rgba(193, 199, 255, 0.8);
}

.codeChips99 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.codeChips99 span {
  background: rgba(247, 159, 31, 0.1);
  color: #f79f1f;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
}

.summaryTable99 {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.summaryTable99 td {
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.summaryTable99 td:first-child {
  color: #c1c7ff;
  width: 40%;
}

.summaryAccent99 {
  color: #f79f1f;
  font-weight: 600;
}

.summaryReveal88 {
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 20px;
  background: rgba(10, 15, 40, 0.75);
  display: none;
  animation: fadeIn 0.3s ease forwards;
}

.summaryReveal88.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.igniteButton {
  margin-top: 12px;
  padding: 16px;
  border-radius: 20px;
  border: none;
  background: linear-gradient(135deg, #ffb347, #ffcc33 60%, #ff8f00);
  color: #1a140d;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 18px 35px rgba(255, 149, 5, 0.35);
}

.igniteButton:hover {
  transform: translateY(-3px);
}

.auxiliaryDeck55 {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.auxCard21 {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 18px;
  background: rgba(20, 24, 54, 0.9);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.auxCard21 h4 {
  margin: 0 0 10px 0;
  font-size: 16px;
  color: #f79f1f;
}

.auxCard21 ul {
  margin: 0;
  padding-left: 18px;
  color: #c1c7ff;
  font-size: 13px;
  line-height: 1.5;
}

.catalogVault42 {
  background: rgba(10, 13, 32, 0.85);
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 25px 60px rgba(5, 9, 28, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.catalogVault42 h3 {
  font-size: 24px;
  margin: 0 0 12px 0;
  font-family: "Clash Display", "Space Grotesk", sans-serif;
}

.catalogVault42 p {
  color: #c1c7ff;
  font-size: 14px;
  margin-bottom: 20px;
}

.catalogColumns42 {
  column-count: 2;
  column-gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 420px;
  overflow-y: auto;
}

.catalogColumns42 li {
  break-inside: avoid;
  padding: 4px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
}

/* Media Queries */
@media (max-width: 900px) {
  .binarySlate88 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .novaContainer {
    padding: 20px 14px 40px;
  }
  .solarIntroVX {
    padding: 26px;
  }
  .quantumModuleLX,
  .catalogVault42 {
    padding: 22px;
  }
  .catalogColumns42 {
    column-count: 1;
    max-height: 500px;
  }
  .video-frame {
    width: 100%;
  }
}

.panIndiaDeck {
      --pan-midnight: #040a1c;
      --pan-ink: #e1e8ff;
      --pan-amber: #ffb347;
      --pan-sun: #ff7f50;
      --pan-cyan: #16ffe4;
      --pan-rose: #ff4d8d;
      --pan-card: rgba(7, 16, 45, 0.82);
      --pan-border: rgba(255, 255, 255, 0.12);
      background: linear-gradient(145deg, #1a1f3c, #090d1d);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 36px;
      box-shadow: 0 30px 80px rgba(2, 8, 30, 0.65);
      color: var(--pan-ink);
      width: 100%;
      max-width: 1200px;
      margin: 4rem auto;
      overflow: hidden;
      padding: 2.5rem;
      position: relative;
    }

    .panIndiaDeck::after {
      content: "";
      position: absolute;
      inset: 1px;
      border-radius: 34px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      pointer-events: none;
    }

    .panIndiaDeck > * {
      position: relative;
      z-index: 1;
    }

    .pan-hero {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
    }

    .pan-heading h2 {
      font-family: "Clash Display", "Space Grotesk", system-ui, sans-serif;
      font-size: clamp(30px, 4.4vw, 48px);
      margin: 14px 0 10px;
      line-height: 1.15;
      color: #fff2de;
      text-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    }

    .pan-heading p {
      color: rgba(225, 232, 255, 0.78);
      max-width: 640px;
      margin: 0;
      font-size: 16px;
      line-height: 1.6;
    }

    .pan-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 12px;
      padding: 9px 18px;
      border-radius: 999px;
      background: linear-gradient(120deg, #ffb347, #ff6b6b);
      color: #140700;
      box-shadow: 0 12px 30px rgba(255, 105, 90, 0.35);
    }

    .pan-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      margin-top: 20px;
    }

    .pan-meta div {
      min-width: 120px;
    }

    .pan-meta strong {
      display: block;
      font-size: clamp(22px, 3.4vw, 36px);
      font-weight: 700;
      color: #fff;
    }

    .pan-meta span {
      color: rgba(225, 232, 255, 0.7);
      font-size: 13px;
      letter-spacing: 0.03em;
    }

    .pan-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .pan-btn {
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 700;
      font-size: 14px;
      padding: 12px 20px;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      white-space: nowrap;
    }

    .pan-btnPrimary {
      background: linear-gradient(120deg, #ffb347, #ff7f50 65%, #ff4d8d);
      color: #1c0b00;
      box-shadow: 0 16px 40px rgba(255, 122, 78, 0.45);
    }

    .pan-btnSoft {
      border-color: rgba(255, 255, 255, 0.25);
      background: rgba(255, 255, 255, 0.08);
      color: #f6f0ff;
      box-shadow: 0 12px 24px rgba(5, 9, 28, 0.45);
    }

    .pan-btnGhost {
      border-color: rgba(255, 255, 255, 0.32);
      background: transparent;
      color: #f5f7ff;
    }

    .pan-btn:hover {
      transform: translateY(-2px) scale(1.01);
    }

    .pan-searchline {
      margin-top: 32px;
      background: rgba(4, 12, 35, 0.85);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 18px;
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    }

    .pan-searchline input {
      background: none;
      border: 0;
      color: #f5f7ff;
      flex: 1;
      font-size: 15px;
      outline: none;
    }

    .pan-searchline input::placeholder {
      color: rgba(245, 247, 255, 0.6);
    }

    .pan-legend {
      margin-top: 16px;
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      color: rgba(245, 247, 255, 0.78);
      font-size: 14px;
    }

    .pan-gridWrap {
      margin-top: 28px;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
      border-radius: 26px;
      padding: clamp(16px, 2vw, 28px);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    }

    .pan-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 18px;
    }

    .pan-card {
      background: var(--pan-card);
      border-radius: 22px;
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 22px 40px rgba(2, 8, 24, 0.55);
      color: var(--pan-ink);
      display: flex;
      flex-direction: column;
      backdrop-filter: blur(6px);
      transition: border-color 0.2s ease, transform 0.2s ease;
    }

    .pan-card:hover {
      transform: translateY(-2px);
      border-color: rgba(255, 179, 71, 0.6);
    }

    .pan-cardHeader {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 12px;
      cursor: pointer;
    }

    .pan-cardLabel {
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.55);
      margin-bottom: 4px;
      font-weight: 700;
    }

    .pan-cardHeader h3 {
      margin: 0;
      font-size: 18px;
      color: #ffffff;
    }

    .pan-cardHeader span {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.65);
      font-weight: 600;
    }

    .pan-toggle {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 999px;
      padding: 7px 14px;
      font-size: 12px;
      font-weight: 800;
      color: #ffe7d1;
      cursor: pointer;
      transition: transform 0.2s ease, border-color 0.2s ease;
    }

    .pan-card[data-open="true"] .pan-toggle {
      transform: rotate(180deg);
      border-color: rgba(255, 179, 71, 0.8);
    }

    .pan-cities {
      margin-top: 14px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transition: max-height 0.25s ease, opacity 0.25s ease;
    }

    .pan-card[data-open="true"] .pan-cities {
      max-height: 320px;
      opacity: 1;
    }

    .pan-cities a {
      text-decoration: none;
      font-size: 12.5px;
      font-weight: 700;
      padding: 8px 12px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: #61e0ff;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .pan-cities a:hover {
      transform: translateY(-1px);
      box-shadow: 0 12px 18px rgba(5, 9, 28, 0.55);
      border-color: rgba(255, 179, 71, 0.8);
      color: #fff6e9;
    }

    .pan-empty {
      margin-top: 18px;
      text-align: center;
      font-size: 14px;
      color: rgba(245, 247, 255, 0.8);
    }

    .pan-searchIcon {
      font-size: 18px;
    }

    .sr-only {
      border: 0;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
    }

    @media (max-width: 780px) {
      .pan-hero {
        flex-direction: column;
      }

      .pan-actions {
        width: 100%;
        justify-content: flex-start;
      }
    }
