:root {
    --bg: #071013;
    --bg2: #0b181a;
    --card: #102326;
    --gold: #f1c45b;
    --gold2: #fff0a8;
    --cream: #fff9e9;
    --muted: #a9b9b7;
    --line: rgba(255, 255, 255, 0.1);
    --green: #8bd0b1;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: "Noto Sans Tamil", sans-serif;
    background: var(--bg);
    color: #eef5f3;
    line-height: 1.85;
    overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
    font-family: "Tiro Tamil", serif;
    line-height: 1.35;
}
a {
    text-decoration: none;
}
.section-pad {
    padding: 110px 0;
}
.section-kicker {
    display: inline-block;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 0.08em;
    font-size: 0.88rem;
    margin-bottom: 12px;
}
.display-title,
.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
}
.section-heading {
    max-width: 850px;
}
.section-heading h2 span,
.display-title span {
    color: var(--gold);
}
.section-heading p,
.large-copy {
    color: var(--muted);
    font-size: 1.08rem;
}
.page-loader {
    position: fixed;
    inset: 0;
    background: #050b0d;
    z-index: 9999;
    display: grid;
    place-items: center;
    transition: 0.5s;
}
.page-loader span {
    width: 58px;
    height: 58px;
    border: 3px solid rgba(241, 196, 91, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.site-header {
    transition: 0.35s;
    padding: 12px 0;
}
.site-header.scrolled {
    background: rgba(5, 13, 15, 0.88);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
    padding: 5px 0;
}
.navbar-brand {
    color: #fff;
}
.navbar-brand:hover {
    color: #fff;
}
.brand-symbol {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(241, 196, 91, 0.5);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold);
    box-shadow: 0 0 25px rgba(241, 196, 91, 0.16);
}
.navbar-brand strong {
    display: block;
    font-family: "Tiro Tamil", serif;
    font-size: 1.04rem;
}
.navbar-brand small {
    display: block;
    color: #98aaa8;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.nav-link {
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 0.88rem;
    font-weight: 700;
    margin: 0 5px;
}
.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}
.btn {
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 800;
}
.btn-glow,
.btn-primary-custom {
    background: linear-gradient(135deg, var(--gold), #d9942d);
    color: #182016;
    border: 0;
    box-shadow: 0 12px 30px rgba(241, 196, 91, 0.2);
}
.btn-glow:hover,
.btn-primary-custom:hover {
    color: #10160e;
    transform: translateY(-2px);
}
.btn-outline-custom {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}
.btn-outline-custom:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 47%, rgba(241, 196, 91, 0.16), transparent 25%),
        linear-gradient(100deg, rgba(3, 10, 12, 0.98) 20%, rgba(5, 16, 18, 0.88) 63%, rgba(8, 26, 27, 0.72)),
        url("../images/photo-1500530855697-b586d89ba3ee.avif?auto=format&fit=crop&w=2000&q=85")
            center/cover;
}
.hero-section:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 55px 55px;
    mask-image: linear-gradient(to bottom, black, transparent);
}
.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cad7d4;
    font-weight: 800;
}
.eyebrow span {
    width: 44px;
    height: 2px;
    background: var(--gold);
}
.hero-section h1 {
    font-size: clamp(4rem, 9vw, 8.8rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin: 18px 0;
}
.hero-section h1 span {
    color: transparent;
    -webkit-text-stroke: 1px var(--gold);
    filter: drop-shadow(0 0 18px rgba(241, 196, 91, 0.25));
}
.hero-lead {
    max-width: 720px;
    color: #bdcdca;
    font-size: 1.15rem;
}
.hero-stats > div {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 18px;
}
.hero-stats strong {
    display: block;
    font-size: 1.65rem;
    color: var(--gold);
}
.hero-stats span {
    display: block;
    color: #95a8a5;
    font-size: 0.78rem;
}
.meditation-visual {
    height: 520px;
    position: relative;
    display: grid;
    place-items: center;
}
.halo {
    position: absolute;
    border: 1px solid rgba(241, 196, 91, 0.25);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}
.halo-1 {
    width: 250px;
    height: 250px;
}
.halo-2 {
    width: 370px;
    height: 370px;
    animation-delay: 0.8s;
}
.halo-3 {
    width: 500px;
    height: 500px;
    animation-delay: 1.6s;
}
.sun-core {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: radial-gradient(circle, #fff7bd 0, #f1c45b 30%, #e29a31 58%, rgba(226, 154, 49, 0.08) 70%);
    box-shadow: 0 0 75px rgba(241, 196, 91, 0.48);
    font-size: 4.2rem;
    color: #15201a;
    z-index: 2;
}
.spark {
    position: absolute;
    width: 7px;
    height: 7px;
    background: var(--gold2);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--gold);
    animation: float 4s ease-in-out infinite;
}
.s1 {
    top: 12%;
    left: 28%;
}
.s2 {
    top: 23%;
    right: 10%;
    animation-delay: 1s;
}
.s3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}
.s4 {
    bottom: 8%;
    right: 28%;
    animation-delay: 3s;
}
@keyframes pulse {
    50% {
        transform: scale(1.06);
        opacity: 0.55;
    }
}
@keyframes float {
    50% {
        transform: translateY(-18px);
        opacity: 0.45;
    }
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}
.orb-one {
    width: 350px;
    height: 350px;
    background: rgba(38, 122, 106, 0.2);
    left: -120px;
    bottom: -90px;
}
.orb-two {
    width: 300px;
    height: 300px;
    background: rgba(241, 196, 91, 0.12);
    right: 10%;
    top: -100px;
}
.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 25px;
    width: 30px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
}
.scroll-down span {
    position: absolute;
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    left: 12px;
    top: 9px;
    animation: scroll 1.6s infinite;
}
@keyframes scroll {
    to {
        transform: translateY(20px);
        opacity: 0;
    }
}
.purpose-section {
    background: linear-gradient(180deg, #091416, #0d1d20);
}
.glass-card,
.gold-card {
    padding: 45px;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}
.glass-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
    border: 1px solid var(--line);
}
.gold-card {
    background: linear-gradient(145deg, #f4ce70, #d89a33);
    color: #172018;
    box-shadow: 0 25px 70px rgba(205, 143, 40, 0.18);
}
.icon-box {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(241, 196, 91, 0.12);
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 25px;
}
.icon-box.dark {
    background: rgba(0, 0, 0, 0.1);
    color: #172018;
}
.glass-card h3,
.gold-card h3 {
    font-size: 2rem;
}
.glass-card p,
.gold-card p {
    font-size: 1.05rem;
    margin: 20px 0 0;
}
.glass-card p {
    color: #c0cfcc;
}
.grace-label {
    color: var(--green);
    font-weight: 800;
    font-size: 0.85rem;
}
.dark-text {
    color: #4d3a15;
}
.meditation-section {
    background: #f3efe5;
    color: #162020;
}
.image-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    min-height: 520px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}
.image-frame img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
}
.image-frame:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 18, 18, 0.65), transparent 55%);
}
.image-badge {
    position: absolute;
    z-index: 2;
    left: 25px;
    bottom: 25px;
    background: rgba(7, 19, 20, 0.85);
    color: white;
    padding: 14px 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
}
.image-badge i {
    color: var(--gold);
    font-size: 1.4rem;
}
.meditation-section .large-copy {
    color: #53605e;
}
.quote-panel {
    margin-top: 28px;
    padding: 26px;
    border-left: 4px solid var(--gold);
    background: #fff;
    border-radius: 0 18px 18px 0;
    box-shadow: 0 15px 40px rgba(20, 30, 28, 0.06);
}
.quote-panel i {
    color: var(--gold);
    font-size: 1.5rem;
}
.quote-panel p {
    margin: 7px 0 0;
    font-size: 1.1rem;
    font-weight: 700;
}
.practice-card {
    height: 100%;
    padding: 30px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #e5dfd0;
    position: relative;
    transition: 0.35s;
    overflow: hidden;
}
.practice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 55px rgba(24, 39, 35, 0.1);
    border-color: #e4b84f;
}
.practice-card span {
    position: absolute;
    right: 18px;
    top: 10px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(16, 44, 39, 0.05);
}
.practice-card i {
    color: #c78d26;
    font-size: 1.7rem;
    margin-bottom: 18px;
}
.practice-card p {
    margin: 0;
    color: #3d4c49;
}
.wide-card {
    display: flex;
    gap: 20px;
    align-items: center;
}
.wide-card i {
    margin: 0;
}
.god-section {
    background:
        linear-gradient(rgba(3, 12, 14, 0.72), rgba(3, 12, 14, 0.88)),
        url("https://images.unsplash.com/photo-1499209974431-9dddcece7f88?auto=format&fit=crop&w=2000&q=85")
            center/cover fixed;
    min-height: 520px;
    display: flex;
    align-items: center;
}
.god-section h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin: 15px 0;
}
.god-section p {
    max-width: 850px;
    margin: auto;
    color: #c5d2cf;
    font-size: 1.16rem;
}
.god-sun {
    font-size: 4rem;
    color: var(--gold);
    filter: drop-shadow(0 0 30px rgba(241, 196, 91, 0.65));
    animation: spin 18s linear infinite;
}
.definition-section {
    background: linear-gradient(120deg, #0b181a, #102629);
}
.definition-section .large-copy {
    color: #b8c7c4;
}
.symbol-art {
    height: 390px;
    position: relative;
    display: grid;
    place-items: center;
}
.symbol-art:before,
.symbol-ring {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(241, 196, 91, 0.3);
}
.symbol-art:before {
    width: 330px;
    height: 330px;
    box-shadow: 0 0 75px rgba(241, 196, 91, 0.12);
}
.symbol-ring {
    width: 230px;
    height: 230px;
    border-style: dashed;
    animation: spin 20s linear infinite;
}
.symbol-art i {
    font-size: 5rem;
    color: var(--gold);
}
.symbol-art span {
    position: absolute;
    bottom: 40px;
    text-align: center;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.12em;
}
.training-section {
    background: #071113;
}
.training-section p {
    color: var(--muted);
}
.training-card {
    height: 100%;
    padding: 30px;
    background: linear-gradient(145deg, #102326, #0b191b);
    border: 1px solid var(--line);
    border-radius: 22px;
    transition: 0.35s;
}
.training-card:hover {
    border-color: rgba(241, 196, 91, 0.55);
    transform: translateY(-6px);
}
.training-card i {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 18px;
}
.training-card h4 {
    font-size: 1.18rem;
}
.training-card p {
    font-size: 0.9rem;
    margin: 0;
}
.levels-section {
    background: #f3efe5;
    color: #182320;
}
.levels-section .section-heading p {
    color: #687370;
}
.timeline {
    max-width: 1000px;
    margin: auto;
    position: relative;
}
.timeline:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 49px;
    width: 1px;
    background: linear-gradient(var(--gold), #ded6c5);
}
.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 25px;
    margin-bottom: 22px;
    position: relative;
}
.timeline-no {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #102326;
    color: var(--gold);
    font-weight: 900;
    font-size: 1.1rem;
    border: 8px solid #f3efe5;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.timeline-content {
    background: #fff;
    padding: 28px 32px;
    border-radius: 20px;
    border: 1px solid #e4ddcf;
    box-shadow: 0 10px 35px rgba(25, 37, 34, 0.05);
}
.timeline-content h3 {
    font-size: 1.42rem;
    color: #b57d1d;
}
.timeline-content p {
    margin: 0;
    color: #56615e;
}
.timeline-item.final .timeline-no {
    background: linear-gradient(135deg, var(--gold), #c88720);
    color: #152019;
}
.timeline-item.final .timeline-content {
    background: #102326;
    color: white;
    border: 0;
}
.timeline-item.final .timeline-content p {
    color: #bdccc9;
}
.timeline-item.final .timeline-content h3 {
    color: var(--gold);
}
.cta-section {
    background: radial-gradient(circle at 50% 0, rgba(241, 196, 91, 0.14), transparent 40%), #081315;
}
.cta-box {
    padding: 75px 30px;
    border: 1px solid rgba(241, 196, 91, 0.25);
    border-radius: 35px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
    position: relative;
    overflow: hidden;
}
.cta-box:before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(241, 196, 91, 0.08);
    filter: blur(40px);
    left: -80px;
    top: -80px;
}
.cta-box h2 {
    font-size: clamp(2rem, 5vw, 4rem);
}
.cta-box p {
    color: var(--muted);
    max-width: 700px;
    margin: auto;
}
.site-footer {
    padding: 35px 0;
    background: #040a0b;
    border-top: 1px solid var(--line);
    color: #819391;
    font-size: 0.82rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}
.footer-brand i {
    color: var(--gold);
    font-size: 2rem;
}
.footer-brand strong,
.footer-brand span {
    display: block;
}
.footer-brand strong {
    color: #fff;
    font-family: "Tiro Tamil", serif;
    font-size: 1.1rem;
}
.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 0;
    background: var(--gold);
    color: #142019;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.3s;
    z-index: 50;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: none;
}
@media (max-width: 991px) {
    .site-header {
        background: rgba(5, 13, 15, 0.92);
        padding: 5px 0;
    }
    .navbar-collapse {
        padding: 18px 0;
    }
    .nav-link {
        padding: 10px 0;
    }
    .hero-section {
        text-align: center;
    }
    .eyebrow {
        justify-content: center;
    }
    .hero-lead {
        margin: auto;
    }
    .hero-stats {
        text-align: left;
    }
    .section-pad {
        padding: 80px 0;
    }
    .image-frame {
        min-height: 430px;
    }
    .god-section {
        background-attachment: scroll;
    }
}
@media (max-width: 575px) {
    body {
        font-size: 0.94rem;
    }
    .hero-section h1 {
        font-size: 3.35rem;
    }
    .hero-stats > div {
        padding-left: 10px;
    }
    .hero-stats strong {
        font-size: 1.3rem;
    }
    .hero-stats span {
        font-size: 0.65rem;
    }
    .glass-card,
    .gold-card {
        padding: 28px;
    }
    .practice-card,
    .training-card {
        padding: 24px;
    }
    .wide-card {
        display: block;
    }
    .wide-card i {
        margin-bottom: 18px;
    }
    .timeline:before {
        left: 27px;
    }
    .timeline-item {
        grid-template-columns: 58px 1fr;
        gap: 12px;
    }
    .timeline-no {
        width: 54px;
        height: 54px;
        border-width: 5px;
        font-size: 0.8rem;
    }
    .timeline-content {
        padding: 22px 20px;
    }
    .timeline-content h3 {
        font-size: 1.15rem;
    }
    .cta-box {
        padding: 55px 20px;
    }
    .image-frame {
        min-height: 360px;
    }
}
