:root {
    --green: #092d22;
    --mid: #184b3b;
    --gold: #e9c667;
    --ink: #20382e;
    --muted: #637269;
    --line: #dce3de;
    --paper: #f5f7f3;
    --elastic: cubic-bezier(.22, 1.35, .45, 1)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px
}

body {
    margin: 0;
    font: 16px/1.7 Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: #fff
}

a {
    color: inherit;
    text-decoration: none
}

button,
input,
select,
textarea {
    font: inherit
}

button,
a,
input,
textarea,
select {
    -webkit-tap-highlight-color: transparent
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid #be8a22;
    outline-offset: 5px
}

img {
    max-width: 100%;
    display: block
}

button {
    cursor: pointer
}

.container {
    width: calc(100% - 100px);
    max-width: 1280px;
    margin: auto;
    padding: 0
}

.topbar {
    background: var(--green);
    color: #e2eade;
    font-size: 12px;
    letter-spacing: .03em;
    padding: 8px 0
}

.top-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px
}

.separator {
    margin: 0 18px;
    color: #708a7b
}

header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid #e8ede7
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100px;
    flex-wrap: nowrap
}

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

.brand img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%
}

.brand span {
    font: bold 19px Georgia, serif;
    letter-spacing: .04em;
    line-height: 1.4
}

.brand small {
    display: block;
    font: 10px Arial, sans-serif;
    letter-spacing: .25em;
    margin-top: 4px
}

.navigation {
    display: flex;
    gap: 28px;
    align-items: center;
    font-size: 14px
}

.navigation>a:not(.btn):hover {
    color: #9a701c
}

.btn {
    border: 0;
    border-radius: 4px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    text-decoration: none;
    line-height: 1.5;
    transition: transform .4s var(--elastic), background .25s
}

.btn:hover {
    transform: translateY(-3px)
}

.btn-green,
.btn-green:hover {
    background: var(--green);
    color: #fff
}

.btn-gold,
.btn-gold:hover {
    background: var(--gold);
    color: var(--green)
}

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    background: #fff;
    padding: 7px 14px;
    border-radius: 4px
}

.hero {
    background: var(--paper);
    overflow: hidden
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 640px
}

.hero-copy {
    padding: 62px 38px 30px 0;
    position: relative
}

.eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    margin-bottom: 22px;
    color: var(--mid)
}

h1,
h2,
h3,
p {
    margin-top: 0
}

h1,
.hero h2 {
    font: normal clamp(45px, 4.6vw, 68px)/1.09 Georgia, 'Times New Roman', serif;
    letter-spacing: -.035em;
    margin-bottom: 25px
}

h2 {
    font: normal clamp(34px, 3.1vw, 47px)/1.18 Georgia, 'Times New Roman', serif;
    letter-spacing: -.025em;
    margin-bottom: 24px
}

em {
    font-weight: normal;
    color: #638160
}

h3 {
    font-size: 20px;
    line-height: 1.4
}

p {
    color: var(--muted);
    margin-bottom: 22px
}

.hero-copy p {
    font-size: 16px;
    line-height: 1.8
}

.hero-actions {
    display: flex;
    gap: 27px;
    align-items: center;
    margin: 29px 0
}

.text-link {
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    gap: 18px;
    align-items: center
}

.text-link:hover {
    text-decoration: underline
}

.hero-local {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    letter-spacing: .11em;
    margin-top: 38px
}

.hero-local [lang] {
    font-size: 14px;
    letter-spacing: 0
}

.mini-rule {
    height: 1px;
    width: 28px;
    background: #92a68f
}

.hero-visual {
    position: relative;
    min-height: 640px;
    margin-right: -50px
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 56% center
}

.hero-visual:after {
    content: '';
    position: absolute;
    inset: 50% 0 0;
    background: linear-gradient(transparent, #092d2288);
    pointer-events: none
}

.image-caption {
    position: absolute;
    bottom: 45px;
    left: 42px;
    z-index: 1;
    color: #fff
}

.image-caption>span {
    font-size: 10px;
    letter-spacing: .18em
}

.image-caption strong {
    display: block;
    font: normal 31px/1.2 Georgia, serif;
    margin-top: 13px
}

.slider-controls {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 35px
}

.slider-controls button {
    border: 0;
    background: none;
    font-size: 12px;
    padding: 4px;
    color: #718376
}

.slider-controls [aria-pressed=true] {
    color: var(--green);
    font-weight: bold
}

.slider-line {
    height: 2px;
    background: #a4b794;
    width: 65px
}

.slider-controls #pause-slider {
    margin-left: 10px;
    border-bottom: 1px solid #a4b794
}

.trust-strip {
    border-bottom: 1px solid var(--line)
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 30px 0
}

.trust-grid>div {
    text-align: center;
    border-right: 1px solid var(--line)
}

.trust-grid>div:last-child {
    border: 0
}

.trust-grid strong {
    display: block;
    font: 24px/1.4 Georgia, serif
}

.trust-grid span {
    font-size: 12px;
    color: var(--muted)
}

.section {
    padding: 95px 0
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center
}

.about-photo {
    position: relative;
    padding: 0 25px 30px 0
}

.about-photo>img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    border-radius: 4px 85px 4px 4px
}

.photo-tag {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--green);
    color: #fff;
    padding: 23px 34px;
    font: 19px/1.6 Georgia, serif;
    border-left: 4px solid var(--gold)
}

.photo-tag strong {
    color: var(--gold);
    font-weight: normal
}

.about-values {
    border-top: 1px solid var(--line);
    margin: 22px 0
}

.about-values>div {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 20px;
    font-size: 14px
}

.about-values span {
    color: #86997b;
    font-family: Georgia, serif
}

.schemes-section {
    background: var(--paper)
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px
}

.filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 30px 0 20px
}

.filters button {
    border: 1px solid #cbd5c9;
    background: transparent;
    color: var(--green);
    padding: 9px 24px;
    border-radius: 30px;
    font-size: 14px;
    transition: all .3s var(--elastic)
}

.filters button.active {
    background: var(--green);
    color: #fff;
    border-color: var(--green)
}

.filters button:hover {
    transform: translateY(-2px)
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.plan {
    background: #fff;
    border: 1px solid #dce3d8;
    border-radius: 5px;
    padding: 25px;
    transition: transform .5s var(--elastic), box-shadow .3s
}

.plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px #1335240c
}

.plan-top {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    letter-spacing: .08em;
    color: #637269;
    margin-bottom: 23px
}

.plan-top span:last-child {
    background: #eff3ec;
    padding: 2px 9px;
    border-radius: 20px;
    letter-spacing: 0;
    font-size: 12px
}

.plan h3 {
    font: 35px/1.1 Georgia, serif;
    margin: 0 0 8px
}

.plan>p {
    font-size: 12px;
    margin-bottom: 23px
}

.monthly strong {
    font-size: 22px;
    font-weight: 500
}

.monthly>span {
    font-size: 13px;
    color: var(--muted);
    margin-left: 6px
}

.plan-note {
    font-size: 12px;
    color: var(--muted);
    margin: 3px 0 20px
}

.plan-enquire {
    border-top: 1px solid var(--line);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: bold
}

.scheme-disclaimer {
    font-size: 12px;
    line-height: 1.8;
    margin: 25px 0 0
}

.small-label {
    font-size: 13px;
    line-height: 1.9
}

.how-section {
    background: var(--green);
    color: #fff
}

.how-section .eyebrow {
    color: var(--gold)
}

.how-section em {
    color: var(--gold)
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin: 40px 0 25px
}

.step-number {
    color: var(--gold);
    font: 36px Georgia, serif;
    display: block;
    border-bottom: 1px solid #486252;
    padding-bottom: 20px;
    margin-bottom: 25px
}

.steps-grid h3 {
    font-size: 18px
}

.steps-grid p {
    font-size: 14px;
    color: #bdcdbf
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 45px;
    align-items: center
}

.director img {
    width: 100%;
    height: 406px;
    object-fit: cover;
    object-position: top;
    background: var(--paper);
    border-radius: 5px
}

.director h3 {
    margin: 20px 0 2px;
    font: 23px Georgia, serif
}

.director p {
    font-size: 13px;
    margin: 0
}

.contact-section {
    background: #f1f4ee
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 90px
}

.contact-detail span {
    display: block;
    font-size: 10px;
    letter-spacing: .13em;
    margin: 20px 0 3px
}

.contact-detail a {
    font: 24px Georgia, serif
}

.contact-grid address {
    font-size: 14px;
    color: var(--muted);
    margin: 28px 0 18px;
    font-style: normal
}

form {
    background: #fff;
    border: 1px solid var(--line);
    padding: 34px;
    border-radius: 6px
}

form h3 {
    font: 27px Georgia, serif;
    margin-bottom: 25px
}

label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 7px
}

input,
select,
textarea {
    display: block;
    width: 100%;
    border: 1px solid #d7dfd4;
    border-radius: 3px;
    padding: 11px 13px;
    background: #fff;
    color: var(--green);
    font-size: 14px;
    margin-bottom: 18px
}

input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #829d75;
    outline-offset: 1px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.consent {
    display: flex;
    gap: 10px;
    font-size: 12px;
    font-weight: normal;
    align-items: start;
    line-height: 1.7
}

.consent input {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 4px
}

.consent a {
    text-decoration: underline
}

.submit {
    width: 100%;
    margin-top: 12px
}

.honey {
    position: absolute;
    left: -9999px
}

#form-status {
    font-size: 13px;
    margin: 14px 0 0
}

#form-status.error {
    color: #a32a27
}

footer {
    background: #061f18;
    color: #dce6dc;
    padding: 55px 0 20px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr 1fr;
    gap: 60px
}

.footer-brand span {
    font-size: 15px
}

.footer-brand img {
    width: 74px;
    height: 74px
}

.footer-brand small {
    font-size: 8px;
    letter-spacing: .13em
}

.footer-grid p {
    color: #9eb0a3;
    font-size: 14px;
    margin-top: 20px
}

.footer-grid h3 {
    font-size: 14px;
    color: #fff
}

.footer-grid>div>a:not(.brand) {
    display: block;
    font-size: 13px;
    margin-bottom: 8px
}

.socials {
    display: flex;
    gap: 20px;
    font-size: 12px;
    margin-top: 20px
}

.legal {
    border-top: 1px solid #2c4237;
    margin-top: 35px;
    padding-top: 18px;
    font-size: 11px;
    color: #9eb0a3;
    display: flex;
    justify-content: space-between
}

.whatsapp {
    position: fixed;
    bottom: 23px;
    right: 24px;
    z-index: 25;
    background: #187946;
    color: #fff;
    border: 1px solid #ffffff88;
    padding: 14px 20px;
    border-radius: 40px;
    box-shadow: 0 6px 24px #0002;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 13px
}

.whatsapp svg {
    width: 23px;
    height: 23px
}

.whatsapp:hover {
    color: #fff;
    background: #0d6335
}

.skip {
    position: fixed;
    top: -100px;
    left: 15px;
    z-index: 99;
    background: #fff;
    padding: 10px
}

.skip:focus {
    top: 10px
}

[hidden] {
    display: none !important
}

.reveal.in-view {
    animation: reveal .8s var(--elastic)
}

.slide-copy.active,
.hero-image.active {
    animation: appear .8s ease both
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(25px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes appear {
    from {
        opacity: .3
    }

    to {
        opacity: 1
    }
}

.privacy {
    max-width: 850px
}

.privacy h1 {
    margin-bottom: 40px
}

.privacy h2 {
    font-size: 28px;
    margin-top: 35px
}

.privacy a:not(.btn) {
    text-decoration: underline
}

@media(min-width:1440px) {
    .hero-visual {
        margin-right: calc((1280px - 100vw)/2)
    }
}

@media(max-width:1100px) {
    .container {
        width: calc(100% - 50px)
    }

    .navigation {
        gap: 18px
    }

    .brand span {
        font-size: 15px
    }

    .hero h1,
    .hero h2 {
        font-size: 53px
    }

    .hero-visual {
        margin-right: -25px
    }

    .hero-actions {
        gap: 16px;
        flex-wrap: wrap
    }

    .about-grid,
    .contact-grid {
        gap: 45px
    }

    .leadership-grid {
        gap: 25px
    }
}

@media(max-width:800px) {
    .topbar {
        font-size: 11px
    }

    .top-inner>span,
    .top-inner .separator,
    .top-inner a[href^="mailto"] {
        display: none
    }

    .top-inner {
        justify-content: center
    }

    .navbar {
        min-height: 85px
    }

    .menu-toggle {
        display: block
    }

    .navigation {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 85px;
        padding: 20px 25px;
        background: #fff;
        box-shadow: 0 15px 20px #0001
    }

    .navigation.open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 18px
    }

    .brand img {
        width: 60px;
        height: 60px
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        min-height: 570px
    }

    .hero-copy {
        padding-top: 40px;
        padding-right: 15px
    }

    .hero h1,
    .hero h2 {
        font-size: 42px
    }

    .hero-visual {
        min-height: 570px
    }

    .hero-copy p {
        font-size: 14px
    }

    .eyebrow {
        font-size: 10px
    }

    .hero-local {
        flex-wrap: wrap;
        font-size: 9px
    }

    .image-caption {
        left: 20px;
        bottom: 35px
    }

    .image-caption strong {
        font-size: 25px
    }

    .section {
        padding: 65px 0
    }

    .about-grid {
        gap: 35px
    }

    .about-photo>img {
        height: 450px
    }

    .photo-tag {
        font-size: 16px;
        padding: 17px
    }

    .plans-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .leadership-grid {
        grid-template-columns: 1fr 1fr
    }

    .leadership-grid>div {
        grid-column: 1/-1
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        gap: 25px;
        grid-template-columns: 1fr 1fr
    }

    .footer-grid>div:first-child {
        grid-column: 1/-1
    }

    .trust-grid strong {
        font-size: 19px
    }

    .trust-grid span {
        font-size: 11px
    }
}

@media(max-width:560px) {
    .container {
        width: calc(100% - 36px)
    }

    .hero-grid {
        display: flex;
        flex-direction: column
    }

    .hero-copy {
        padding: 36px 0 25px
    }

    .hero h1,
    .hero h2 {
        font-size: 49px;
        line-height: 1.06
    }

    .hero-actions {
        margin: 22px 0;
        gap: 24px
    }

    .hero-local {
        margin-top: 24px
    }

    .hero-visual {
        min-height: 360px;
        margin: 0 -18px
    }

    .hero-image {
        object-position: center 45%
    }

    .hero-copy p {
        font-size: 15px
    }

    .slider-controls {
        margin-top: 20px
    }

    .image-caption {
        bottom: 28px;
        left: 25px
    }

    .image-caption strong {
        font-size: 27px
    }

    .trust-grid {
        padding: 22px 0;
        gap: 8px
    }

    .trust-grid strong {
        font-size: 17px;
        line-height: 1.35
    }

    .trust-grid span {
        font-size: 10px;
        display: block;
        line-height: 1.5;
        margin-top: 7px;
        padding: 0 5px
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .about-photo>img {
        height: 320px
    }

    .section-heading {
        display: block
    }

    .section-heading .text-link {
        margin-bottom: 18px
    }

    .filters {
        gap: 8px
    }

    .filters button {
        padding: 8px 14px;
        font-size: 12px
    }

    .plans-grid {
        gap: 12px
    }

    .plan {
        padding: 17px 13px
    }

    .plan-top {
        display: block;
        margin-bottom: 18px;
        font-size: 9px
    }

    .plan-top span {
        display: block;
        width: max-content;
        margin-top: 5px
    }

    .plan h3 {
        font-size: 27px
    }

    .monthly strong {
        font-size: 18px
    }

    .monthly>span {
        font-size: 11px;
        margin-left: 3px
    }

    .plan-enquire {
        font-size: 11px;
        gap: 6px
    }

    .plan-note {
        font-size: 10px
    }

    .step-number {
        font-size: 31px
    }

    .steps-grid {
        gap: 25px
    }

    .steps-grid h3 {
        font-size: 17px
    }

    .steps-grid p {
        font-size: 13px
    }

    .director img {
        height: 240px
    }

    .director h3 {
        font-size: 22px
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0
    }

    form {
        padding: 25px 20px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .footer-grid>div:first-child {
        grid-column: auto
    }

    .legal {
        display: block;
        padding-bottom: 45px
    }

    .legal>span:last-child {
        display: block;
        margin-top: 7px
    }

    .whatsapp {
        right: 16px;
        bottom: 16px;
        padding: 13px
    }

    .whatsapp span {
        display: none
    }

    .brand span {
        font-size: 14px
    }

    .brand small {
        font-size: 9px
    }

    .desktop {
        display: none
    }

    h2 {
        font-size: 37px
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    *,
    *:before,
    *:after {
        animation: none !important;
        transition: none !important
    }
}

.navigation a[aria-current="page"] {
    color: #846018;
    text-decoration: underline;
    text-underline-offset: 7px
}

.page-intro {
    padding: 40px 0 64px;
    background: var(--paper);
    border-bottom: 1px solid var(--line)
}

.breadcrumbs {
    display: flex;
    gap: 13px;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 36px
}

.breadcrumbs a {
    text-decoration: underline
}

.page-intro h1 {
    font-size: clamp(38px, 4.7vw, 64px);
    max-width: 900px
}

.page-intro p {
    max-width: 670px;
    margin-bottom: 0
}

.page-cta {
    background: var(--green);
    padding: 45px 0;
    color: white
}

.page-cta>.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.page-cta h2 {
    font-size: 34px;
    margin-bottom: 12px
}

.page-cta p {
    color: #bdcdbf;
    margin: 0
}

@media(max-width:560px) {
    .page-intro {
        padding: 26px 0 40px
    }

    .page-cta>.container {
        display: block
    }

    .page-cta .btn {
        margin-top: 25px
    }
}

.faq-wrap {
    max-width: 900px
}

.faq-wrap details {
    border-bottom: 1px solid var(--line);
    padding: 20px 0
}

.faq-wrap summary {
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    line-height: 1.5
}

.faq-wrap details p {
    padding-top: 15px;
    margin-bottom: 0
}

.faq-wrap>.btn {
    margin-top: 30px
}

.navigation .btn[aria-current="page"] {
    color: white;
    text-decoration: underline
}

.navigation {
    gap: 25px
}

@media(min-width:801px) and (max-width:1100px) {
    .navigation {
        gap: 14px;
        font-size: 13px
    }

    .navigation .btn {
        padding: 12px 17px
    }
}

/* Bilingual navigation and Kannada typography */
.language-switch {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0
}

.language-switch a {
    padding: 7px 10px;
    font-size: 12px;
    white-space: nowrap
}

.language-switch a[aria-current="true"] {
    background: var(--green);
    color: white
}

.navigation {
    gap: 18px
}

html[lang="kn-IN"] body {
    font-family: "Nirmala UI", "Noto Sans Kannada", Tunga, Arial, sans-serif;
    line-height: 1.9
}

html[lang="kn-IN"] h1,
html[lang="kn-IN"] h2,
html[lang="kn-IN"] h3,
html[lang="kn-IN"] .brand span {
    font-family: "Nirmala UI", "Noto Sans Kannada", Tunga, sans-serif;
    letter-spacing: 0;
    line-height: 1.5
}

html[lang="kn-IN"] .hero h1,
html[lang="kn-IN"] .hero h2 {
    font-size: clamp(34px, 3.25vw, 49px)
}

html[lang="kn-IN"] .hero-copy {
    padding-top: 38px
}

html[lang="kn-IN"] .eyebrow {
    letter-spacing: 0;
    font-size: 13px
}

html[lang="kn-IN"] .brand span {
    font-size: 18px
}

html[lang="kn-IN"] .brand small {
    letter-spacing: .03em;
    font-size: 11px
}

html[lang="kn-IN"] .navigation {
    gap: 13px;
    font-size: 13px
}

html[lang="kn-IN"] .hero-grid,
html[lang="kn-IN"] .hero-visual {
    min-height: 700px
}

html[lang="kn-IN"] .plan h3 {
    font-size: 29px
}

html[lang="kn-IN"] .plan-enquire {
    font-size: 12px
}

html[lang="kn-IN"] .trust-grid strong {
    font-size: 21px
}

html[lang="kn-IN"] .plan-top {
    letter-spacing: 0
}

html[lang="kn-IN"] .image-caption strong {
    font-family: "Nirmala UI", Tunga, sans-serif;
    font-size: 26px;
    line-height: 1.6
}

html[lang="kn-IN"] .hero-local {
    letter-spacing: 0
}

html[lang="kn-IN"] .hero-actions {
    flex-wrap: wrap
}

@media(max-width:1150px) {
    .navbar .menu-toggle {
        display: block
    }

    .navbar .navigation {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        padding: 20px 25px;
        background: white;
        box-shadow: 0 15px 20px #0001
    }

    .navbar .navigation.open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 18px
    }

    .language-switch {
        align-self: flex-start
    }

    .navbar {
        position: relative
    }
}

@media(max-width:560px) {

    html[lang="kn-IN"] .hero h1,
    html[lang="kn-IN"] .hero h2 {
        font-size: 38px
    }

    html[lang="kn-IN"] h2 {
        font-size: 30px
    }

    html[lang="kn-IN"] .hero-visual {
        min-height: 360px
    }

    html[lang="kn-IN"] .hero-grid {
        min-height: 0
    }

    html[lang="kn-IN"] .plan h3 {
        font-size: 24px
    }

    html[lang="kn-IN"] .trust-grid strong {
        font-size: 17px
    }

    html[lang="kn-IN"] .plan-top span {
        white-space: normal
    }

    html[lang="kn-IN"] .brand span {
        font-size: 16px
    }

    html[lang="kn-IN"] .hero-actions {
        gap: 20px
    }
}

/* Member portal button */
.navigation .btn-login {
    background: #b52b31;
    color: #fff;
    border: 1px solid #b52b31;
    padding: 11px 21px;
    white-space: nowrap;
    text-decoration: none;
    line-height: 1.5
}

.navigation .btn-login:hover {
    background: #982029;
    color: #fff
}

.navigation .btn-login[aria-disabled="true"] {
    cursor: not-allowed;
    transform: none
}

.navigation .btn-login:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px
}

.navigation {
    gap: 14px
}

@media(min-width:1151px) and (max-width:1320px) {
    .navigation {
        gap: 10px;
        font-size: 13px
    }

    .navigation .btn {
        padding: 11px 16px
    }

    .brand span {
        font-size: 16px
    }

    .brand img {
        width: 60px;
        height: 60px
    }

    .language-switch a {
        padding: 7px 8px
    }
}

/* Centre the director cards after removing the introductory text. */
.leadership-grid.directors-only {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
    gap: 40px
}

.leadership-grid.directors-only .director img {
    height: 360px
}

@media(max-width:560px) {
    .leadership-grid.directors-only {
        gap: 20px
    }

    .leadership-grid.directors-only .director img {
        height: 240px
    }
}