:root {
    --pk: #c2185b;
    --pk-b: #e91e8c;
    --pk-p: #fce4ec;
    --pk-g: rgba(194, 24, 91, 0.22);
    --m: #6a0036;
    --md: #3d001f;
    --g: #ffd700;
    --gw: #f9a825;
    --gs: #fff8e1;
    --off: #fff5f9;
    --tx: #1a0010;
    --mu: #7b4060;
    --bd: #f0c0d8;
    --r: 18px;
    --rsm: 10px;
    --cream: #fff5f9;
    --ink: #2A2118;
    --maroon: #6B1F2A;
    --gold: #C8932A;
    --forest: #1F4734;
    --terracotta: #B5563C;
    --line: rgba(42, 33, 24, 0.14);
    --paper: #fce4ec;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arimo', system-ui, sans-serif;
    color: var(--tx);
    background: #fff;
    overflow-x: hidden;
    line-height: 1.65;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--pk);
    border-radius: 5px;
}

.serif {
    font-family: 'Playfair Display', serif;
}

.gtext {
    background: linear-gradient(135deg, var(--pk), var(--m));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gtext-gold {
    background: linear-gradient(135deg, var(--g), #ff8f00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--pk-p);
    border: 1px solid rgba(194, 24, 91, 0.18);
    color: var(--pk);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 50px;
}

.section-h {
    font-size: clamp(1.85rem, 4vw, 2.9rem);
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 0.9rem;
}

.section-p {
    color: var(--mu);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
    font-size: 1.2rem;
}

.divider {
    width: 54px;
    height: 4px;
    background: linear-gradient(90deg, var(--pk), var(--g));
    border-radius: 2px;
    margin: 0.8rem auto 1.2rem;
}

section {
    padding: 5.5rem 0;
}

/* ANNOUNCE */
#ann {
    background: linear-gradient(90deg, var(--md), var(--m), var(--pk));
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    z-index: 1001;
    overflow: hidden;
}

.mq-w {
    overflow: hidden;
    white-space: nowrap;
}

.mq-i {
    display: inline-flex;
    gap: 3.5rem;
    animation: mq 35s linear infinite;
}

@keyframes mq {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.mq-sep {
    color: var(--g);
}

/* NAVBAR */
.navbar_con {
    background: rgba(255, 255, 255, 0.97);
    /* backdrop-filter: blur(16px); */
    /* box-shadow: 0 4px 30px var(--pk-g); */
    position: fixed;
    top: 2.3rem;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s;
}

.navbar_con .container {
    padding: 0px;
}

.navbar_con.solid {
    top: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px var(--pk-g);
}

#nav .nav_class {
    max-width: 100%;
}

.ni {
    padding: 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.npill {
    /* background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px; */
    padding: 0.5rem 1.4rem 0.5rem 0.6rem;
    /* display: flex;
    align-items: center;
    gap: 0.85rem; */
    transition: all 0.3s;
}

#nav.solid .npill {
    /* background: #fff;
    border-color: var(--bd);
    box-shadow: 0 2px 16px var(--pk-g); */
}

.nlogo {
    /* width: 42px;
    height: 42px;
    border-radius: 50%; */
    object-fit: contain;
    /* background: #fff;
    padding: 2px; */
}

.nbrand {
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
    transition: color 0.3s;
    line-height: 1.1;
}

.nbsub {
    font-size: 0.58rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.3px;
    transition: color 0.3s;
}

#nav.solid .nbrand {
    color: var(--md);
}

#nav.solid .nbsub {
    color: var(--mu);
}

.nlinks {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.na {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--tx);
    text-decoration: none;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    transition: all 0.2s;
}

#nav.solid .na {
    color: var(--tx);
}

.na:hover {
    background: rgba(194, 24, 91, 0.1);
    color: var(--pk) !important;
}

.bncall {
    background: linear-gradient(135deg, var(--pk), var(--m));
    color: #fff !important;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.48rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 16px var(--pk-g);
    transition: all 0.2s;
}

.bncall:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--pk-g);
    color: #fff !important;
}

#ham {
    /* background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2); */
    border-radius: 10px;
    width: 40px;
    height: 40px;
    /* color: #fff; */
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    background: var(--pk-p) !important;
    border-color: #ff00b4 !important;
    color: var(--pk) !important;
}

/* *{
    border: 1px solid red;
} */

#nav.solid #ham {
    background: var(--pk-p) !important;
    border-color: #ff00b4 !important;
    color: var(--pk) !important;
}

#mob {
    display: none;
    padding: 1rem 0 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 0.5rem;
}

#nav.solid #mob {
    border-color: var(--bd);
}

#mob .na {
    display: block;
    padding: 5px 15px;
    margin-bottom: 5px;
}

.nav_class {
    position: relative;
}

.nav_class .close_nav #mob {
    background: #fcf8fa;
    padding: 10px 15px;
    width: 350px;
    position: absolute;
    right: 0;
    height: 100vh;
    margin-top: 0px !important;
}

.nav_class #mob button {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    padding: 4px 12px;
    background: #b71556;
    border-radius: 41px;
    color: #fff;
}

/* HERO */
#hero {
    min-height: 100vh;
    background: linear-gradient(145deg, var(--md) 0%, #7b1850 42%, var(--pk) 78%, #f06292 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 7rem 0 5rem;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.07);
    animation: exp 8s linear infinite;
}

.ring:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.ring:nth-child(2) {
    width: 620px;
    height: 620px;
    top: -200px;
    right: -200px;
    animation-delay: 2s;
}

.ring:nth-child(3) {
    width: 840px;
    height: 840px;
    top: -310px;
    right: -310px;
    animation-delay: 4s;
}

.ring:nth-child(4) {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -80px;
    animation-delay: 1s;
}

.ring:nth-child(5) {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -180px;
    animation-delay: 3s;
}

@keyframes exp {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}

.coin {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.12;
    animation: fc 6s ease-in-out infinite;
}

.coin:nth-child(6) {
    left: 8%;
    top: 22%;
    animation-delay: 0s;
    font-size: 1.2rem;
}

.coin:nth-child(7) {
    left: 13%;
    top: 68%;
    animation-delay: 1.5s;
    font-size: 2rem;
}

.coin:nth-child(8) {
    left: 82%;
    top: 14%;
    animation-delay: 0.7s;
    font-size: 1.8rem;
}

.coin:nth-child(9) {
    left: 87%;
    top: 72%;
    animation-delay: 2s;
    font-size: 1.3rem;
}

.coin:nth-child(10) {
    left: 52%;
    top: 82%;
    animation-delay: 1s;
    font-size: 1.6rem;
}

@keyframes fc {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    33% {
        transform: translateY(-18px) rotate(8deg);
    }

    66% {
        transform: translateY(8px) rotate(-5deg);
    }
}

.hcont {
    position: relative;
    z-index: 2;
}

.heyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.28);
    color: var(--g);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    letter-spacing: 0.8px;
    margin-bottom: 1.5rem;
}

.hh {
    font-size: clamp(2.8rem, 6.5vw, 5.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}

.hhtamil {
    font-size: clamp(1.4rem, 3.5vw, 2.4rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--g) 0%, #ffb3d9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hp {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 2.25rem;
}

.hp strong {
    color: #fff;
}

.btngold {
    background: var(--g);
    color: var(--md) !important;
    font-weight: 800;
    font-size: 1rem;
    padding: 0.9rem 2.1rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s;
}

.btngold:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(255, 215, 0, 0.55);
}

.btngw {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 2.1rem;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(8px);
    transition: all 0.25s;
}

.btngw:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.7);
}

.hstats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hsn {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--g);
    line-height: 1;
}

.hsl {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.4px;
    margin-top: 0.15rem;
}

.hsdiv {
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}

/* HERO CARD */
.hcard {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    padding: 2rem;
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.hclabel {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 1rem;
}

.hclogowrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    margin-bottom: 1.25rem;
}

.hclogoimg {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    padding: 3px;
    flex-shrink: 0;
}

.hcln {
    color: #fff;
    font-weight: 900;
    font-size: 1.1rem;
    line-height: 1.2;
}

.hcls {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 600;
}

.hcver {
    margin-left: auto;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    padding: 0.2rem 0.7rem;
    font-size: 0.62rem;
    font-weight: 800;
    color: var(--g);
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.pri {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0.9rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 0.55rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.pri:hover {
    background: rgba(255, 215, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.25);
    transform: translateX(5px);
}

.prin {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.prim {
    color: rgba(255, 255, 255, 0.61);
    font-size: 0.9rem;
    font-weight: 400;
}

.pria {
    color: var(--g);
    font-weight: 900;
    font-size: 0.95rem;
}

.hccontact {
    margin-top: 1.25rem;
    padding: 1rem 1.1rem;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.18);
    border-radius: 12px;
}

.hcaddr {
    color: rgb(255 255 255);
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 0.5rem;
}

.hcphone {
    color: var(--g);
    font-weight: 900;
    font-size: 1.05rem;
    text-decoration: none;
    display: block;
}

.hcphone a {
    color: var(--g);
    font-weight: 900;
    font-size: 1.05rem;
    text-decoration: none;
}

/* WAVE */
.wave-bot {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 2;
}

.wave-bot svg {
    display: block;
    width: 100%;
}

/* TRUST */
#trust {
    background: var(--md);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(194, 24, 91, 0.25);
}

.tritem {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    justify-content: center;
}

.tricon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--pk), var(--gw));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
}

.trval {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--g);
}

.trlbl {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
}

/* ABOUT */
#about {
    background: var(--off);
}

.alogoshowcase {
    background: linear-gradient(135deg, var(--md), var(--m));
    border-radius: 24px;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.alogoshowcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 40%, rgba(255, 215, 0, 0.08), transparent 65%);
}

.alogobig {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
    margin: 0 auto 1.25rem;
    display: block;
    box-shadow:
        0 0 0 4px rgba(255, 215, 0, 0.3),
        0 0 0 8px rgba(255, 215, 0, 0.1),
        0 20px 50px rgba(0, 0, 0, 0.4);
    animation: pr 3s ease-in-out infinite;
}

@keyframes pr {

    0%,
    100% {
        box-shadow:
            0 0 0 4px rgba(255, 215, 0, 0.3),
            0 0 0 8px rgba(255, 215, 0, 0.1),
            0 20px 50px rgba(0, 0, 0, 0.4);
    }

    50% {
        box-shadow:
            0 0 0 8px rgba(255, 215, 0, 0.25),
            0 0 0 16px rgba(255, 215, 0, 0.07),
            0 20px 50px rgba(0, 0, 0, 0.4);
    }
}

.aln {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.25rem;
}

.alt {
    font-size: 1rem;
    font-weight: 700;
    color: var(--g);
    margin-bottom: 0.5rem;
}

.altag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.25);
    color: var(--g);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.28rem 0.8rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.asc {
    background: #fff;
    border-radius: var(--r);
    padding: 1.5rem;
    border: 1.5px solid var(--bd);
    text-align: center;
    transition: all 0.25s;
}

.asc:hover {
    border-color: var(--pk);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px var(--pk-g);
}

.ascn {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--pk);
    line-height: 1;
}

.ascu {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gw);
}

.ascl {
    font-size: 1.5rem;
    color: var(--mu);
    font-weight: 600;
    margin-top: 0.35rem;
}

/* PLANS */
#plans {
    background: #fff;
}

.tabr {
    display: inline-flex;
    gap: 0.35rem;
    background: var(--off);
    border-radius: 50px;
    padding: 0.3rem;
    box-shadow:
        inset 0 2px 8px rgba(194, 24, 91, 0.07),
        0 2px 20px rgba(194, 24, 91, 0.06);
    border: 1px solid var(--bd);
}

.tabb {
    padding: 0.55rem 1.75rem;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.25s;
    background: transparent;
    color: var(--mu);
}

.tabb.on {
    background: linear-gradient(135deg, var(--pk), var(--m));
    color: #fff;
    box-shadow: 0 4px 18px var(--pk-g);
}

.pc {
    background: #fff;
    border-radius: 22px;
    border: 2px solid var(--bd);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s;
    position: relative;
}

.pc:hover {
    transform: translateY(-8px);
    border-color: var(--pk);
    box-shadow: 0 24px 60px var(--pk-g);
}

.pc.hot {
    border-color: var(--pk);
    box-shadow: 0 8px 40px var(--pk-g);
}

.pch {
    background: linear-gradient(140deg, var(--md) 0%, var(--pk) 120%);
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
}

.pch::before {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    top: -50px;
    right: -40px;
}

.pch::after {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.07);
    bottom: -25px;
    left: 20px;
}

.pcal {
    color: rgba(255, 255, 255, 1);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.pca {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--g);
    line-height: 1;
}

.pcm {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.18rem 0.75rem;
    margin-top: 0.75rem;
}

.pcs {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    background: var(--g);
    color: var(--md);
    font-size: 0.62rem;
    font-weight: 900;
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    z-index: 1;
}

.pcb {
    padding: 1.4rem;
}

.pcr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.55rem 0;
    border-bottom: 1px dashed #fbe8f2;
    font-size: 0.9rem;
}

.pcr:last-of-type {
    border: none;
}

.pck {
    color: var(--mu);
    font-weight: 500;
}

.pcv {
    font-weight: 700;
    color: var(--tx);
}

.pcv.pk {
    color: var(--pk);
}

.pcv.gd {
    color: var(--gw);
    font-size: 0.95rem;
}

.bsched {
    width: 100%;
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--pk-p), #ffd6ec);
    border: 1.5px solid rgba(194, 24, 91, 0.2);
    color: var(--pk);
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.65rem;
    border-radius: var(--rsm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    transition: all 0.2s;
}

.bsched:hover {
    background: var(--pk);
    color: #fff;
    border-color: var(--pk);
}

.sw {
    display: none;
    margin-top: 0.85rem;
    border-radius: var(--rsm);
    overflow: hidden;
    border: 1px solid var(--bd);
}

.sw.open {
    display: block;
}

.sw table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.sw thead th {
    background: linear-gradient(135deg, var(--md), var(--pk));
    color: #fff;
    padding: 0.5rem 0.65rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.68rem;
}

.sw tbody td {
    padding: 0.42rem 0.65rem;
    text-align: center;
    border-bottom: 1px solid #fbe8f2;
    font-weight: 500;
}

.sw tbody tr:nth-child(even) {
    background: rgba(194, 24, 91, 0.022);
}

.sw tbody tr.tot {
    background: linear-gradient(135deg, rgba(194, 24, 91, 0.08), rgba(61, 0, 31, 0.08));
    font-weight: 900;
    color: var(--pk);
}

.pnote {
    font-size: 1rem;
    color: var(--mu);
    text-align: center;
    margin-top: 1.25rem;
    font-style: italic;
}

/* PLAN TABS */
.plan-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    border: none;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.plan-tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: .55rem 1.2rem;
    border: 2px solid var(--bd);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    transition: all .2s;
    color: var(--dark);
    min-width: 90px;
    line-height: 1.2;
}

.plan-tab-btn:hover {
    border-color: var(--pk);
    background: rgba(194, 24, 91, .05);
    color: var(--pk);
}

.plan-tab-btn.active {
    background: linear-gradient(135deg, var(--pk), var(--dark));
    border-color: transparent;
    color: #630730;
    box-shadow: 0 4px 16px rgba(194, 24, 91, .3);
}

.ptb-dur {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

.ptb-unit {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.ptb-cnt {
    font-size: .68rem;
    opacity: .7;
    margin-top: 2px;
}

.plan-tab-btn.active .ptb-cnt {
    opacity: .85;
}

/* HOW */
#how {
    background: var(--off);
}

.tline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.scard {
    text-align: center;
    padding: 2rem 1.25rem;
    background: #fff;
    border-radius: 20px;
    border: 2px solid var(--bd);
    transition: all 0.28s;
}

.scard:hover {
    border-color: var(--pk);
    box-shadow: 0 16px 40px var(--pk-g);
    transform: translateY(-6px);
}

.snum {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    margin: 0 auto 1.2rem;
    background: linear-gradient(135deg, var(--pk), var(--m));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 8px 24px var(--pk-g);
    position: relative;
    z-index: 1;
}

.stit {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.sdesc {
    font-size: 0.9rem;
    color: var(--mu);
    line-height: 1.7;
}



/* WHY */
#why {
    background: #fff;
}

.wgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}


.wcard {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #fff;
    border-radius: var(--r);
    border: 1.5px solid var(--bd);
    transition: all 0.22s;
}

.wcard:hover {
    border-color: var(--pk);
    box-shadow: 0 8px 28px var(--pk-g);
    transform: translateX(5px);
}

.wicon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--pk-p), #ffd6ec);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.wtit {
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.wdesc {
    font-size: 0.92rem;
    color: var(--mu);
    line-height: 1.65;
}

/* BRANCHES */
#branches {
    background: var(--off);
}

.bgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}


.bcard {
    border-radius: 20px;
    padding: 1.75rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.28s;
}

.bcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.bcard.hq {
    background: linear-gradient(140deg, var(--md), var(--pk));
}

.bcard.br {
    background: linear-gradient(140deg, #3d001f, var(--m));
}

.bcard::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    bottom: -60px;
    right: -50px;
    pointer-events: none;
}

.bcicon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.bctype {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 0.2rem;
}

.bcname {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.bcaddr {
    font-size: 0.9rem;
    color: rgb(255 255 255 / 81%);
    line-height: 1.6;
}

.bcphone {
    display: block;
    margin-top: 0.9rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--g) !important;
    font-weight: 800;
    font-size: 0.88rem;
    text-decoration: none;
}

/* CTA */
#cta {
    background: linear-gradient(145deg, var(--md) 0%, var(--m) 50%, var(--pk) 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 215, 0, 0.08), transparent 65%);
}

.ctalogo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.95);
    padding: 5px;
    margin: 0 auto 1.5rem;
    display: block;
    box-shadow:
        0 0 0 4px rgba(255, 215, 0, 0.3),
        0 20px 50px rgba(0, 0, 0, 0.3);
}

.ctaph {
    display: block;
    text-decoration: none;
    font-size: clamp(2rem, 5vw, 4.8rem);
    font-weight: 900;
    color: var(--g);
    text-shadow: 0 4px 30px rgba(255, 215, 0, 0.35);
    transition: all 0.22s;
    line-height: 1.08;
    margin: 0.7rem 0;
    font-family: 'Fraunces', serif;
    ;
}

.ctaph:hover {
    color: var(--g);
    transform: scale(1.03);
    text-shadow: 0 8px 50px rgba(255, 215, 0, 0.55);
}

.ctaaddr {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

/* FOOTER */
footer {
    background: var(--md);
    padding: 2.5rem 0;
    text-align: center;
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(194, 24, 91, 0.2);
}

footer a {
    color: var(--pk-b);
    text-decoration: none;
    font-weight: 600;
}

.flogo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    padding: 2px;
    margin: 0 auto 0.75rem;
    display: block;
}

/* FABS */
.fabw {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    z-index: 600;
    align-items: flex-end;
}

.fab {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.25s;
    text-decoration: none;
}

.fab:hover {
    transform: scale(1.12) translateY(-3px);
}

.fab.wa {
    background: #25d366;
}

.fab.ph {
    background: linear-gradient(135deg, var(--pk), var(--m));
}

#sctop {
    position: fixed;
    bottom: 1.75rem;
    left: 1.75rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--pk), var(--m));
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 20px var(--pk-g);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.3s;
    z-index: 500;
}

#sctop.show {
    opacity: 1;
    transform: translateY(0);
}

#stickycall {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 700;
    background: linear-gradient(90deg, var(--md), var(--pk));
    padding: 0.85rem 1rem;
    text-align: center;
}

#stickycall a {
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.scgold {
    color: var(--g);
    font-size: 1.15rem;
}

/* ---------- HERO ---------- */
.hero {
    padding: 96px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero .wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--maroon);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--maroon);
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.06;
    margin-bottom: 24px;
}

.hero h1 em {
    font-style: italic;
    color: var(--maroon);
}

.hero p.lead {
    font-size: 1.1rem;
    max-width: 46ch;
    opacity: 0.82;
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    gap: 36px;
}

.hero-stats div {}

.hero-stats .num {
    font-size: 1.5rem;
    color: var(--maroon);
    font-weight: 500;
}

.hero-stats .label {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ---------- SIGNATURE WHEEL ---------- */
.wheel-frame {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*
.wheel-caption {
    text-align: center;
    font-size: 0.78rem;
    opacity: 0.6;
    margin-top: 14px;
} */

/* ---------- SECTION GENERIC ---------- */
section {
    padding: 80px 0;
    border-top: 1px solid var(--line);
}

.section-head_1 {
    text-align: center;
}

.section-head_1 h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}



/* ---------- STORY (numbered, real sequence) ---------- */
#story {
    background-color: var(--off);
}

.story-list {
    display: flex;
    flex-direction: column;

}

.story-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 24px;
    padding: 28px 0;
    border-top: 1px solid var(--line);
}

.story-row:first-child {
    border-top: none;
}

.story-row .yr {
    color: var(--maroon);
    font-size: 0.95rem;
    padding-top: 4px;
}

.story-row h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.story-row p {
    opacity: 0.78;
    font-size: 0.96rem;
}

/* ---------- VALUES ---------- */
#values {
    background: var(--off);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    /* background: var(--line);
    border: 1px solid var(--line); */
}

.value-card {
    padding: 32px 26px;
    text-align: center;
    background: linear-gradient(140deg, var(--md), var(--pk));
    border-radius: 20px;
}

.value-card .glyph {
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    font-size: 35px;
    color: var(--gs);
}

.value-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--g);
}

.value-card p {
    font-size: 0.9rem;
    opacity: 0.72;
    color: #fff;
}

/* ---------- TEAM (monogram, not photos) ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;

}

.team-card {
     text-align: center;
}

.avatar {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 4px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--cream);
      overflow: hidden;
  border-radius: 50%;
}

.avatar img {
    border-radius: 4px;
    width: 100%;
}

.team-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 3px;
}

.team-card .role {
    font-size: 1rem;
    opacity: 0.95;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Contact_Us */


.Contact_Us .eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--maroon);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.Contact_Us .eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--maroon);
}

.Contact_Us .hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    line-height: 1.08;
    margin-bottom: 18px;
}

.Contact_Us .hero h1 em {
    font-style: italic;
    color: var(--maroon);
}

.Contact_Us .hero p.lead_1 {
    font-size: 1.05rem;
    opacity: 0.8;
    max-width: 95ch;
}

.Contact_Us section.bordered {
    border-top: 1px solid var(--line);
    padding-top: 80px;
}

.Contact_Us .section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 24px;
    flex-wrap: wrap;
}

.Contact_Us .section-head h2 {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.Contact_Us .section-head .desc {
    max-width: 34ch;
    opacity: 0.75;
    font-size: 0.95rem;
}

/* ---------- QUICK CONTACT STRIP ---------- */
.Contact_Us .quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-bottom: 8px;
}

.Contact_Us .quick-card {
    background: var(--cream);
    padding: 30px 26px;
}

.Contact_Us .quick-card .glyph {
    width: 30px;
    height: 30px;
    margin-bottom: 16px;
}

.Contact_Us .quick-card .label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.8;
    margin-bottom: 8px;
}

.Contact_Us .quick-card .value {
    font-size: 1.05rem;
    font-weight: 500;
}

.Contact_Us .quick-card .sub {
    font-size: 0.9rem;
    opacity: 0.75;
    margin-top: 4px;
}

/* ---------- BRANCHES + MAP ---------- */
.Contact_Us .branch-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
}

.Contact_Us .branch-list {
    background: var(--paper);
}

.Contact_Us .branch-tab {
    display: block;
    width: 100%;
    text-align: left;
    padding: 24px 26px;
    border: none;
    background: transparent;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
    font-family: 'Work Sans', sans-serif;
    color: var(--ink);
}

.Contact_Us .branch-tab:last-child {
    border-bottom: none;
}

.branch-tab .tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: var(--maroon);
    margin-bottom: 8px;
    display: block;
}

.Contact_Us .branch-tab h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    font-weight: 500;
}

.Contact_Us .branch-tab p {
    font-size: 0.9rem;
    opacity: 0.75;
    margin-bottom: 10px;
}

.Contact_Us .branch-tab .meta {
    font-size: 0.9rem;
    opacity: 0.75
}

.Contact_Us .branch-tab.active {
    background: #fff;
    border-left: 3px solid var(--maroon);
}

.Contact_Us .branch-tab.active .tag {
    color: var(--maroon);
}

.Contact_Us .map-pane {
    position: relative;
    min-height: 380px;
    background: var(--ink);
}

.Contact_Us .map-pane iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
    display: block;
    filter: saturate(0.85) contrast(1.05);
}

.Contact_Us .map-pane .pin-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--cream);
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 0.82rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 8px;
}

.Contact_Us .map-pane .pin-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--maroon);
}

.Contact_Us .hero {
    padding: 110px 0 40px;
}

.contact_details {
    padding-bottom: 80px;
}

/* ---------- ENQUIRY FORM ---------- */
#enquiry {
    padding-top: 110px;
}

.form-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.form-side img {
    border-radius: 5px;
}

.form_enquiry {
    padding: 15px;
    background-color: #fff3fb;
    border-radius: 5px;
    text-align: center;
}

.form_enquiry .nav-item .nav-link {
    margin-right: 15px;
}

.nav-item .nav-link {
    background: rgba(194, 24, 91, 0.1);
    color: var(--pk) !important;
}

.form_enquiry .nav-item .nav-link:hover,
.form_enquiry .nav-item .nav-link.active {
    background: linear-gradient(135deg, var(--pk), var(--m));
    color: #fff !important;
}

form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.5;
    margin-bottom: 8px;
    font-weight: 600;
    float: left;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #ffffffbe;
    border-radius: 3px;
    padding: 13px 14px;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--ink);
}

#captcha_code {
    width: 50%;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--maroon);
    background: #fff;
}

.field textarea {
    resize: vertical;
    min-height: 110px;
}

.submit-btn {
    background: var(--maroon);
    color: var(--cream);
    border: none;
    padding: 15px 28px;
    border-radius: 3px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    justify-self: center;
    transition: background .2s;
}

.submit-btn:hover {
    background: #5a1a23;
}

.form-note {
    font-size: 0.78rem;
    opacity: 0.55;
}

.success-msg {
    display: none;
    background: var(--forest);
    color: var(--cream);
    padding: 20px 22px;
    border-radius: 4px;
    font-size: 0.92rem;
}

.success-msg.show {
    display: block;
}

.na.active {
    background: rgba(194, 24, 91, 0.1);
    color: var(--pk) !important;
}

/* Gallery */
.gallery_container {
    padding: 110px 0px 80px;
}


/* ── MAIN WRAPPER ── */
main {

    margin: 0 auto;
    padding: 110px 20px 80px;
}

.control {
    max-width: 900px;
    margin: 0px auto;
}

/* ── SECTION TITLE ── */
.sect-title {
    text-align: center;
    margin-bottom: 32px;
}

.sect-title .tamil {
    font-family: 'Noto Sans Tamil', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--pk);
    display: block;
    margin-bottom: 8px;
}

.sect-title h2 {
    font-family: 'Baloo 2', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--md);
    letter-spacing: 1.5px;
}

.divider {
    width: 60px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--pk), var(--g));
    margin: 12px auto 0;
}

/* ── PLAN CARDS ── */
.plans-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.plan-card {
    background: #fff;
    border-radius: var(--r);
    box-shadow: 0 4px 18px rgba(194, 24, 91, 0.10);
    overflow: hidden;
    position: relative;
    display: grid;
    grid-template-columns: 60px 1fr 1fr 1fr;
    align-items: center;
    border: 1px solid var(--bd);
    transition: transform .2s, box-shadow .2s;
}

.plan-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(194, 24, 91, 0.18);
}

.plan-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--pk-b), var(--pk));
}

.plan-num {
    background: linear-gradient(135deg, var(--pk), var(--m));
    color: #fff;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 22px 0;
}

.plan-cell {
    padding: 20px 16px;
}

.plan-cell .lbl {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--mu);
    font-weight: 600;
    margin-bottom: 5px;
}

.plan-cell .val {
    font-family: 'Baloo 2', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--tx);
}

.plan-cell.days .val {
    color: var(--m);
}

.plan-cell.benefit .val {
    color: var(--pk);
}

.plan-cell.benefit {
    background: linear-gradient(135deg, var(--pk-p), var(--gs));
}

.plan-card .badge {
    position: absolute;
    top: 50%;
    right: 12px;
    background: linear-gradient(90deg, var(--g), var(--gw));
    color: var(--md);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 2px 9px;
    border-radius: 10px;
    letter-spacing: 0.04em;
}

/* ── TABLE HEADER ── */
.table-header {
    display: grid;
    grid-template-columns: 60px 1fr 1fr 1fr;
    margin-bottom: 10px;
    padding: 0 0 8px;
    border-bottom: 2px solid var(--bd);
}

.table-header .th {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--mu);
    padding: 0 16px;
}

.table-header .th:first-child {
    text-align: center;
}

/* ── RETURN BANNER ── */
.return-banner {
    background: linear-gradient(135deg, var(--md), var(--m));
    border-radius: var(--r);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.return-banner::after {
    content: "20%";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Baloo 2', sans-serif;
    font-size: 7rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.return-banner .icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--g), var(--gw));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.return-banner h3 {
    font-family: 'Baloo 2', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.return-banner p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.return-pct {
    font-family: 'Baloo 2', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--g);
    margin-left: auto;
    flex-shrink: 0;
}

/* ── CONTACT ── */
.contact-section {
    margin-bottom: 48px;
}

.contact-card {
    background: #fff;
    border-radius: var(--r);
    border: 1px solid var(--bd);
    overflow: hidden;
}

.contact-head {
    background: linear-gradient(90deg, var(--pk), var(--pk-b));
    padding: 16px 24px;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-body {
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.c-item .c-lbl {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--mu);
    font-weight: 600;
    margin-bottom: 5px;
}

.c-item .c-val {
    font-family: 'Baloo 2', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--m);
}

.c-item .c-sub {
    font-size: 0.95rem;
    color: var(--mu);
    margin-top: 3px;
    font-family: 'Noto Sans Tamil', sans-serif;
}

.ph-big {
    grid-column: 1/-1;
    background: var(--pk-p);
    border-radius: var(--rsm);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ph-big .num {
    font-family: 'Baloo 2', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--pk);
    letter-spacing: 2px;
}

.ph-big a {
    background: linear-gradient(90deg, var(--pk), var(--pk-b));
    color: #fff;
    padding: 10px 22px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    white-space: nowrap;
}

/* ── PARTNERS ── */
.partners-title {
    text-align: center;
    font-family: 'Noto Sans Tamil', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--m);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--bd);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.partner-card {
    background: #fff;
    border-radius: var(--rsm);
    border: 1px solid var(--bd);
    overflow: hidden;
    text-align: center;
}

.partner-card .p-icon {
    background: linear-gradient(135deg, var(--pk-p), var(--gs));
    padding: 20px;
    font-size: 2rem;
}

.partner-card .p-body {
    padding: 14px 12px;
}

.partner-card h4 {
    font-family: 'Noto Sans Tamil', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--m);
    margin-bottom: 14px;
}

.partner-card .p-loc {
    font-family: 'Noto Sans Tamil', sans-serif;
    font-size: 0.85rem;
    color: var(--mu);
}

/* ── FOOTER ── */
footer {
    background: linear-gradient(135deg, var(--md), var(--m));
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-size: 0.78rem;
    padding: 40px 20px;
    margin-top: 0;
}

footer b {
    color: var(--g);
}