/* =====================================================
   SAINIK SCHOOL RAJKOT
   INFORMATION + ADMISSION PORTAL
===================================================== */

:root {

    --black: #090b0d;
    --black-2: #111519;
    --panel: #171d21;

    --white: #ffffff;
    --paper: #f4f5f2;
    --soft: #e7e9e5;

    --amber: #e2a83b;
    --amber-light: #f2c66c;

    --red: #b73830;
    --red-dark: #8f2b25;

    --green: #43513d;

    --text: #172025;
    --muted: #687177;

    --border: #d5d9d5;

    --container: 1180px;

    --heading: "Barlow Condensed", sans-serif;
    --body: "Inter", sans-serif;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    background: var(--paper);
    color: var(--text);
    font-family: var(--body);
    line-height: 1.7;
    overflow-x: hidden;
}


img {
    width: 100%;
    display: block;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
select,
textarea {
    font: inherit;
}


button {
    cursor: pointer;
}


.container {
    width: min(92%, var(--container));
    margin-inline: auto;
}


.section {
    padding: 110px 0;
}


.eyebrow {
    display: block;

    color: var(--red);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


/* =====================================================
   TOP NOTICE
===================================================== */

.top-notice {
    background: var(--black);

    color: rgba(255, 255, 255, .65);

    font-size: 9px;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.top-notice-inner {
    min-height: 36px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.top-notice a {
    color: var(--amber);

    font-weight: 800;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    position: sticky;

    top: 0;

    z-index: 1000;

    background: rgba(244, 245, 242, .96);

    border-bottom: 1px solid rgba(0, 0, 0, .1);

    transition: .3s ease;
}


.header.scrolled {
    box-shadow:
        0 12px 35px rgba(0, 0, 0, .08);
}


.nav {
    min-height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.brand {
    display: inline-flex;

    align-items: center;

    gap: 12px;
}


.brand-mark {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    background: var(--black);

    color: var(--amber);

    border: 2px solid var(--amber);

    transform: rotate(45deg);
}


.brand-mark span {
    transform: rotate(-45deg);

    font-family: var(--heading);

    font-size: 17px;

    font-weight: 800;
}


.brand-name strong,
.brand-name small {
    display: block;
}


.brand-name strong {
    color: var(--black);

    font-family: var(--heading);

    font-size: 20px;

    line-height: 1;
}


.brand-name small {
    margin-top: 5px;

    color: var(--red);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 2px;

    line-height: 1;
}


.navigation {
    display: flex;

    align-items: center;

    gap: 24px;
}


.navigation a {
    position: relative;

    color: var(--black);

    font-size: 11px;

    font-weight: 700;
}


.navigation a:not(.nav-cta)::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: var(--amber);

    transition: .25s;
}


.navigation a:not(.nav-cta):hover::after {
    width: 100%;
}


.nav-cta {
    padding: 11px 19px;

    background: var(--red);

    color: var(--white) !important;
}


.menu-toggle {
    display: none;

    border: 0;

    background: transparent;
}


.menu-toggle span {
    display: block;

    width: 25px;

    height: 2px;

    margin: 5px 0;

    background: var(--black);
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;

    min-height: 750px;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: var(--white);
}


.hero-image {
    position: absolute;

    inset: 0;

    background:
        url("https://images.unsplash.com/photo-1594736797933-d0501ba2fe65?auto=format&fit=crop&w=2200&q=90") center / cover no-repeat;
}


.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(9, 11, 13, .97),
            rgba(9, 11, 13, .82) 43%,
            rgba(9, 11, 13, .25));
}


.hero::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(rgba(255, 255, 255, .025) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, .025) 1px,
            transparent 1px);

    background-size: 55px 55px;
}


.hero-content {
    position: relative;

    z-index: 2;

    padding: 100px 0;
}


.hero-badge {
    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--amber);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2.4px;
}


.hero-badge span {
    width: 35px;

    height: 2px;

    background: var(--red);
}


.hero h1 {
    max-width: 850px;

    margin: 25px 0;

    font-family: var(--heading);

    font-size: clamp(70px, 10vw, 130px);

    line-height: .82;

    letter-spacing: -2px;

    text-transform: uppercase;
}


.hero h1 strong {
    display: block;

    color: var(--amber);

    font-weight: 800;
}


.hero-content>p {
    max-width: 660px;

    color: rgba(255, 255, 255, .68);

    font-size: 15px;
}


.hero-actions {
    display: flex;

    gap: 12px;

    margin-top: 34px;
}


.button {
    min-height: 52px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    padding: 0 23px;

    border: 1px solid transparent;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.1px;

    text-transform: uppercase;

    transition: .25s ease;
}


.button-primary {
    background: var(--red);

    color: var(--white);
}


.button-primary:hover {
    background: var(--red-dark);

    transform: translateY(-2px);
}


.button-outline {
    border-color: rgba(255, 255, 255, .4);

    color: var(--white);
}


.button-outline:hover {
    border-color: var(--amber);

    color: var(--amber);
}


.hero-trust {
    max-width: 850px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    margin-top: 70px;

    border-top: 1px solid rgba(255, 255, 255, .17);
}


.hero-trust div {
    padding: 19px 15px 0 0;

    border-right: 1px solid rgba(255, 255, 255, .12);
}


.hero-trust div:not(:first-child) {
    padding-left: 17px;
}


.hero-trust strong {
    display: block;

    color: var(--amber);

    font-family: var(--heading);

    font-size: 26px;

    line-height: 1;
}


.hero-trust span {
    display: block;

    margin-top: 4px;

    color: rgba(255, 255, 255, .5);

    font-size: 8px;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.hero-side {
    position: absolute;

    z-index: 3;

    right: 28px;

    bottom: 35px;

    writing-mode: vertical-rl;

    color: rgba(255, 255, 255, .35);

    font-size: 8px;

    letter-spacing: 3px;
}


/* =====================================================
   DISCLAIMER
===================================================== */

.disclaimer {
    background: var(--amber);
}


.disclaimer-inner {
    display: grid;

    grid-template-columns: 48px 1fr;

    gap: 18px;

    padding: 24px 0;
}


.disclaimer-icon {
    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    border: 2px solid var(--black);

    color: var(--black);

    font-weight: 800;
}


.disclaimer strong {
    display: block;

    color: var(--black);

    font-size: 10px;

    letter-spacing: 1.5px;
}


.disclaimer p {
    margin-top: 4px;

    color: rgba(0, 0, 0, .68);

    font-size: 11px;
}


/* =====================================================
   INTRO
===================================================== */

.intro {
    background: var(--paper);
}


.intro-grid {
    display: grid;

    grid-template-columns: 170px 1fr;

    gap: 70px;
}


.intro-index {
    color: var(--black);

    font-family: var(--heading);

    font-size: 100px;

    line-height: .8;
}


.intro h2 {
    max-width: 900px;

    margin: 15px 0 25px;

    font-family: var(--heading);

    font-size: clamp(55px, 7vw, 88px);

    line-height: .87;

    text-transform: uppercase;
}


.intro h2 span {
    color: var(--red);
}


.intro p {
    max-width: 760px;

    color: var(--muted);
}


.intro .lead {
    margin-bottom: 18px;

    color: var(--text);

    font-size: 16px;
}


.text-link {
    display: inline-block;

    margin-top: 20px;

    color: var(--red);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =====================================================
   QUICK LINKS
===================================================== */

.quick-links {
    padding: 80px 0;

    background: var(--black);

    color: var(--white);
}


.quick-heading span {
    color: var(--amber);

    font-size: 9px;

    letter-spacing: 2px;

    font-weight: 800;
}


.quick-heading h2 {
    margin-top: 7px;

    font-family: var(--heading);

    font-size: 45px;

    line-height: .9;

    text-transform: uppercase;
}


.quick-grid {
    display: grid;

    grid-template-columns: repeat(6, 1fr);

    margin-top: 40px;
}


.quick-grid a {
    min-height: 160px;

    padding: 20px;

    border: 1px solid rgba(255, 255, 255, .13);

    transition: .25s;
}


.quick-grid a:hover {
    background: var(--panel);

    border-color: var(--amber);

    transform: translateY(-5px);
}


.quick-grid strong {
    color: var(--amber);

    font-family: var(--heading);

    font-size: 21px;
}


.quick-grid span {
    display: block;

    margin-top: 35px;

    font-family: var(--heading);

    font-size: 22px;

    text-transform: uppercase;
}


.quick-grid small {
    display: block;

    color: rgba(255, 255, 255, .45);

    font-size: 8px;
}


/* =====================================================
   SECTION HEADINGS
===================================================== */

.section-heading {
    display: grid;

    grid-template-columns: 1fr 400px;

    gap: 60px;

    align-items: end;

    margin-bottom: 55px;
}


.section-heading h2,
.pattern-header h2,
.preparation-content h2,
.application-heading h2,
.counselling-content h2,
.residential-heading h2,
.fees h2,
.regional h2,
.faq-intro h2,
.contact-information h2 {
    margin-top: 12px;

    font-family: var(--heading);

    font-size: clamp(54px, 6vw, 78px);

    line-height: .88;

    text-transform: uppercase;
}


.section-heading h2 span,
.pattern-header h2 span,
.preparation-content h2 span,
.application-heading h2 span,
.counselling-content h2 span,
.residential-heading h2 span,
.fees h2 span,
.regional h2 span,
.faq-intro h2 span,
.contact-information h2 span {
    color: var(--red);
}


.section-heading>p {
    color: var(--muted);

    font-size: 13px;
}


/* =====================================================
   AISSEE
===================================================== */

.aissee {
    background: var(--soft);
}


.aissee-grid {
    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 18px;
}


.aissee-main {
    padding: 45px;

    background: var(--black);

    color: var(--white);
}


.aissee-icon {
    width: 60px;
    height: 60px;

    display: grid;

    place-items: center;

    border: 2px solid var(--amber);

    color: var(--amber);

    font-family: var(--heading);

    font-size: 30px;
}


.aissee-main h3 {
    max-width: 650px;

    margin: 35px 0 15px;

    font-family: var(--heading);

    font-size: 48px;

    line-height: .9;

    text-transform: uppercase;
}


.aissee-main>p {
    max-width: 680px;

    color: rgba(255, 255, 255, .58);

    font-size: 13px;
}


.exam-facts {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    margin-top: 55px;

    border-top: 1px solid rgba(255, 255, 255, .15);
}


.exam-facts div {
    padding: 18px 12px 0 0;

    border-right: 1px solid rgba(255, 255, 255, .12);
}


.exam-facts div:not(:first-child) {
    padding-left: 15px;
}


.exam-facts strong {
    display: block;

    color: var(--amber);

    font-family: var(--heading);

    font-size: 27px;
}


.exam-facts span {
    color: rgba(255, 255, 255, .48);

    font-size: 8px;

    text-transform: uppercase;
}


.aissee-side {
    display: grid;

    gap: 18px;
}


.info-card {
    padding: 27px;

    background: var(--white);

    border: 1px solid var(--border);
}


.info-card span {
    color: var(--red);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.info-card strong {
    display: block;

    margin: 8px 0;

    font-family: var(--heading);

    font-size: 28px;

    text-transform: uppercase;
}


.info-card p {
    color: var(--muted);

    font-size: 11px;
}


/* =====================================================
   ELIGIBILITY
===================================================== */

.eligibility {
    background: var(--green);

    color: var(--white);
}


.section-heading.light h2 {
    color: var(--white);
}


.section-heading.light>p {
    color: rgba(255, 255, 255, .6);
}


.eligibility-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);
}


.eligibility-grid article {
    min-height: 350px;

    padding: 32px;

    border: 1px solid rgba(255, 255, 255, .15);
}


.eligibility-grid article.highlight {
    background: var(--red);
}


.class-number {
    color: var(--amber);

    font-family: var(--heading);

    font-size: 55px;

    line-height: .8;
}


.eligibility-grid article>span {
    display: block;

    margin-top: 35px;

    color: rgba(255, 255, 255, .45);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;
}


.eligibility-grid h3 {
    margin: 8px 0 15px;

    font-family: var(--heading);

    font-size: 32px;

    line-height: .9;

    text-transform: uppercase;
}


.eligibility-grid p {
    color: rgba(255, 255, 255, .6);

    font-size: 12px;
}


.eligibility-grid a {
    display: inline-block;

    margin-top: 28px;

    color: var(--amber);

    font-size: 9px;

    font-weight: 800;

    text-transform: uppercase;
}


.highlight a {
    color: var(--white);
}


.eligibility-note {
    display: grid;

    grid-template-columns: 150px 1fr;

    gap: 25px;

    margin-top: 18px;

    padding: 25px;

    background: rgba(0, 0, 0, .18);
}


.eligibility-note strong {
    color: var(--amber);

    font-size: 9px;

    letter-spacing: 1.5px;
}


.eligibility-note p {
    color: rgba(255, 255, 255, .55);

    font-size: 11px;
}


/* =====================================================
   SYLLABUS
===================================================== */

.syllabus {
    background: var(--paper);
}


.subject-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
}


.subject-grid article {
    min-height: 320px;

    padding: 32px;

    border: 1px solid var(--border);

    transition: .25s;
}


.subject-grid article:hover {
    background: var(--black);

    color: var(--white);

    transform: translateY(-5px);
}


.subject-icon {
    width: 50px;
    height: 50px;

    display: grid;

    place-items: center;

    border: 1px solid var(--red);

    color: var(--red);

    font-family: var(--heading);

    font-size: 23px;
}


.subject-grid article>span {
    display: block;

    margin-top: 22px;

    color: var(--red);

    font-family: var(--heading);

    font-size: 20px;
}


.subject-grid h3 {
    margin: 25px 0 10px;

    font-family: var(--heading);

    font-size: 30px;

    text-transform: uppercase;
}


.subject-grid p {
    color: var(--muted);

    font-size: 11px;
}


.subject-grid article:hover p {
    color: rgba(255, 255, 255, .55);
}


/* =====================================================
   EXAM PATTERN
===================================================== */

.exam-pattern {
    padding: 100px 0;

    background: var(--black);

    color: var(--white);
}


.pattern-header {
    display: grid;

    grid-template-columns: 1fr 400px;

    gap: 60px;

    align-items: end;

    margin-bottom: 55px;
}


.pattern-header h2 {
    color: var(--white);
}


.pattern-header p {
    color: rgba(255, 255, 255, .52);

    font-size: 12px;
}


.pattern-table {
    border-top: 1px solid rgba(255, 255, 255, .2);
}


.pattern-row {
    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    gap: 20px;

    padding: 20px;

    border-bottom: 1px solid rgba(255, 255, 255, .12);
}


.pattern-row.heading {
    color: var(--amber);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.pattern-row strong {
    font-family: var(--heading);

    font-size: 23px;

    text-transform: uppercase;
}


.pattern-row span,
.pattern-row em {
    color: rgba(255, 255, 255, .55);

    font-size: 11px;

    font-style: normal;
}


/* =====================================================
   PREPARATION
===================================================== */

.preparation {
    background: var(--soft);
}


.preparation-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}


.preparation-photo {
    position: relative;
}


.preparation-photo img {
    height: 610px;

    object-fit: cover;
}


.prep-stamp {
    position: absolute;

    right: 25px;

    bottom: 25px;

    width: 115px;
    height: 115px;

    display: grid;

    place-items: center;

    align-content: center;

    background: var(--red);

    color: var(--white);

    font-family: var(--heading);

    font-size: 25px;

    line-height: .8;

    text-align: center;
}


.prep-stamp strong {
    color: var(--amber);

    font-size: 45px;
}


.preparation-content>p {
    max-width: 600px;

    color: var(--muted);

    font-size: 13px;
}


.prep-list {
    margin-top: 30px;
}


.prep-list>div {
    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 15px;

    padding: 18px 0;

    border-bottom: 1px solid var(--border);
}


.prep-list span {
    color: var(--red);

    font-family: var(--heading);

    font-size: 24px;
}


.prep-list strong {
    font-family: var(--heading);

    font-size: 23px;

    text-transform: uppercase;
}


.prep-list p {
    color: var(--muted);

    font-size: 11px;
}


/* =====================================================
   TIMELINE
===================================================== */

.timeline {
    background: var(--paper);
}


.timeline-track {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    border-top: 2px solid var(--black);
}


.timeline-item {
    min-height: 270px;

    padding: 25px;

    border-right: 1px solid var(--border);
}


.timeline-item:last-child {
    border-right: 0;
}


.timeline-item>span {
    color: var(--red);

    font-family: var(--heading);

    font-size: 28px;
}


.timeline-item small {
    display: block;

    margin-top: 30px;

    color: var(--muted);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.timeline-item strong {
    display: block;

    margin-top: 4px;

    font-family: var(--heading);

    font-size: 27px;

    text-transform: uppercase;
}


.timeline-item p {
    margin-top: 8px;

    color: var(--muted);

    font-size: 11px;
}


.date-note {
    display: grid;

    grid-template-columns: 130px 1fr;

    gap: 20px;

    margin-top: 20px;

    padding: 22px;

    background: var(--soft);
}


.date-note strong {
    color: var(--red);

    font-size: 9px;

    letter-spacing: 1.5px;
}


.date-note p {
    color: var(--muted);

    font-size: 11px;
}


/* =====================================================
   APPLICATION
===================================================== */

.application {
    background: var(--green);

    color: var(--white);
}


.application-heading h2 {
    color: var(--white);
}


.application-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    margin-top: 55px;
}


.application-grid>div {
    min-height: 250px;

    padding: 28px;

    border: 1px solid rgba(255, 255, 255, .13);
}


.application-grid span {
    color: var(--amber);

    font-family: var(--heading);

    font-size: 25px;
}


.application-grid h3 {
    margin-top: 35px;

    font-family: var(--heading);

    font-size: 26px;

    line-height: .95;

    text-transform: uppercase;
}


.application-grid p {
    margin-top: 8px;

    color: rgba(255, 255, 255, .52);

    font-size: 11px;
}


/* =====================================================
   COUNSELLING
===================================================== */

.counselling {
    background: var(--paper);
}


.counselling-grid {
    display: grid;

    grid-template-columns: 1fr .85fr;

    gap: 80px;

    align-items: center;
}


.counselling-content>p {
    max-width: 600px;

    color: var(--muted);

    font-size: 13px;
}


.counselling-points {
    display: grid;

    grid-template-columns: 1fr 1fr;

    margin-top: 35px;
}


.counselling-points>div {
    display: flex;

    align-items: center;

    gap: 13px;

    padding: 15px 0;

    border-bottom: 1px solid var(--border);
}


.counselling-points span {
    color: var(--red);

    font-family: var(--heading);

    font-size: 22px;
}


.counselling-points strong {
    font-family: var(--heading);

    font-size: 17px;

    text-transform: uppercase;
}


.counselling-image img {
    height: 580px;

    object-fit: cover;
}


/* =====================================================
   RESIDENTIAL
===================================================== */

.residential {
    background: var(--soft);
}


.residential-heading {
    max-width: 800px;

    margin-bottom: 55px;
}


.residential-heading p {
    margin-top: 20px;

    color: var(--muted);

    font-size: 13px;
}


.residential-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
}


.residential-grid article {
    min-height: 300px;

    padding: 30px;

    background: var(--white);

    border: 1px solid var(--border);
}


.res-icon {
    color: var(--red);

    font-family: var(--heading);

    font-size: 27px;
}


.residential-grid h3 {
    margin-top: 35px;

    font-family: var(--heading);

    font-size: 28px;

    text-transform: uppercase;
}


.residential-grid p {
    color: var(--muted);

    font-size: 11px;
}


/* =====================================================
   FEES
===================================================== */

.fees {
    background: var(--paper);
}


.fees-grid {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 100px;

    align-items: center;
}


.fees>.container>div:first-child p {
    color: var(--muted);

    font-size: 13px;
}


.fee-list {
    border-top: 2px solid var(--black);
}


.fee-list>div {
    display: grid;

    grid-template-columns: 40px 1fr auto;

    gap: 18px;

    align-items: center;

    padding: 21px 0;

    border-bottom: 1px solid var(--border);
}


.fee-list span {
    color: var(--red);

    font-family: var(--heading);

    font-size: 23px;
}


.fee-list strong {
    font-family: var(--heading);

    font-size: 20px;

    text-transform: uppercase;
}


.fee-list em {
    color: var(--muted);

    font-size: 9px;

    font-style: normal;
}


/* =====================================================
   REGIONAL
===================================================== */

.regional {
    background: var(--amber);
}


.regional-grid {
    display: grid;

    grid-template-columns: .7fr 1.3fr;

    gap: 100px;
}


.regional-grid>div:last-child p {
    margin-bottom: 18px;

    color: rgba(0, 0, 0, .65);

    font-size: 13px;
}


.regional-grid strong {
    color: var(--black);
}


.regional-note {
    padding: 20px;

    background: rgba(255, 255, 255, .45);

    border-left: 3px solid var(--black);
}


.regional-note strong {
    color: var(--red);

    font-size: 9px;

    letter-spacing: 1.5px;
}


.regional-note p {
    margin: 5px 0 0 !important;

    font-size: 11px !important;
}


/* =====================================================
   FAQ
===================================================== */

.faq {
    background: var(--black);

    color: var(--white);
}


.faq-grid {
    display: grid;

    grid-template-columns: .7fr 1.3fr;

    gap: 100px;
}


.faq-intro h2 {
    color: var(--white);
}


.faq-intro p {
    margin-top: 20px;

    color: rgba(255, 255, 255, .5);

    font-size: 12px;
}


.faq-list {
    border-top: 1px solid rgba(255, 255, 255, .15);
}


.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}


.faq-question {
    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 21px 0;

    background: transparent;

    border: 0;

    color: var(--white);

    text-align: left;

    font-family: var(--heading);

    font-size: 22px;

    text-transform: uppercase;
}


.faq-question b {
    color: var(--amber);

    font-size: 24px;

    font-weight: 400;

    transition: .3s;
}


.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition: .35s ease;
}


.faq-answer p {
    padding: 0 45px 23px 0;

    color: rgba(255, 255, 255, .53);

    font-size: 11px;
}


.faq-item.active .faq-answer {
    max-height: 200px;
}


.faq-item.active .faq-question b {
    transform: rotate(45deg);
}


/* =====================================================
   CTA
===================================================== */

.cta {
    padding: 85px 0;

    background: var(--red);

    color: var(--white);
}


.cta-inner {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;
}


.cta-inner>div>span {
    color: rgba(255, 255, 255, .55);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


.cta h2 {
    margin-top: 8px;

    font-family: var(--heading);

    font-size: 65px;

    line-height: .83;

    text-transform: uppercase;
}


.cta h2 strong {
    display: block;

    color: var(--amber);

    font-weight: 800;
}


.button-light {
    background: var(--white);

    color: var(--black);
}


.button-light:hover {
    background: var(--amber);
}


/* =====================================================
   CONTACT
===================================================== */

.contact {
    background: var(--paper);
}


.contact-grid {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 100px;
}


.contact-information>p {
    max-width: 550px;

    color: var(--muted);

    font-size: 13px;
}


.contact-points {
    margin-top: 35px;
}


.contact-points>div {
    padding: 14px 0;

    border-bottom: 1px solid var(--border);
}


.contact-points span {
    display: block;

    color: var(--red);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.contact-points strong {
    display: block;

    margin-top: 3px;

    font-family: var(--heading);

    font-size: 21px;

    text-transform: uppercase;
}


.call-button {
    display: inline-flex;

    flex-direction: column;

    margin-top: 30px;

    padding: 15px 20px;

    background: var(--black);

    color: var(--white);

    font-family: var(--heading);

    font-size: 24px;

    line-height: 1;
}


.call-button span {
    margin-bottom: 5px;

    color: var(--amber);

    font-family: var(--body);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.contact-form {
    padding: 42px;

    background: var(--soft);

    border: 1px solid var(--border);
}


.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


.form-group {
    margin-bottom: 19px;
}


.form-group label {
    display: block;

    margin-bottom: 6px;

    color: var(--black);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 13px;

    border: 1px solid #ccd1cc;

    background: var(--paper);

    color: var(--text);

    outline: none;
}


.form-group textarea {
    resize: vertical;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
}


.submit {
    border: 0;
}


.form-message {
    margin-top: 10px;

    color: var(--red);

    font-size: 10px;
}


.form-disclaimer {
    display: block;

    margin-top: 12px;

    color: var(--muted);

    font-size: 8px;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #050708;

    color: var(--white);
}


.footer-grid {
    display: grid;

    grid-template-columns: 2fr repeat(3, 1fr);

    gap: 60px;

    padding: 70px 0;
}


.footer-brand p {
    max-width: 340px;

    margin-top: 22px;

    color: rgba(255, 255, 255, .4);

    font-size: 11px;
}


.footer .brand-name strong {
    color: var(--white);
}


.footer-column {
    display: flex;

    flex-direction: column;

    gap: 10px;
}


.footer-column h4 {
    margin-bottom: 8px;

    color: var(--amber);

    font-size: 8px;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.footer-column a {
    color: rgba(255, 255, 255, .45);

    font-size: 10px;

    transition: .2s;
}


.footer-column a:hover {
    color: var(--white);
}


.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 20px 0;

    border-top: 1px solid rgba(255, 255, 255, .1);

    color: rgba(255, 255, 255, .27);

    font-size: 8px;
}


/* =====================================================
   BACK TO TOP
===================================================== */

.back-top {
    position: fixed;

    right: 22px;

    bottom: 22px;

    z-index: 900;

    width: 45px;

    height: 45px;

    border: 0;

    background: var(--red);

    color: var(--white);

    font-size: 19px;

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition: .3s;
}


.back-top.visible {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

    .navigation {
        gap: 14px;
    }


    .navigation a {
        font-size: 10px;
    }


    .quick-grid {
        grid-template-columns: repeat(3, 1fr);
    }


    .eligibility-grid,
    .subject-grid,
    .residential-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .timeline-track {
        grid-template-columns: repeat(3, 1fr);
    }


    .timeline-item:nth-child(3) {
        border-right: 0;
    }


    .application-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .application-grid>div:nth-child(2n) {
        border-right: 0;
    }


    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }


    .footer-brand {
        grid-column: span 3;
    }

}


/* =====================================================
   TABLET / MOBILE
===================================================== */

@media (max-width: 820px) {

    .menu-toggle {
        display: block;
    }


    .navigation {
        position: absolute;

        top: 80px;

        left: 0;

        right: 0;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 14px 5%;

        background: var(--paper);

        border-bottom: 1px solid var(--border);

        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    }


    .navigation.active {
        display: flex;
    }


    .navigation a {
        padding: 12px 0;

        border-bottom: 1px solid var(--border);
    }


    .navigation a::after {
        display: none;
    }


    .nav-cta {
        margin-top: 7px;

        text-align: center;
    }


    .intro-grid,
    .preparation-grid,
    .counselling-grid,
    .fees-grid,
    .regional-grid,
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .section-heading,
    .pattern-header {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .aissee-grid {
        grid-template-columns: 1fr;
    }


    .preparation-photo img,
    .counselling-image img {
        height: 500px;
    }


    .eligibility-grid {
        grid-template-columns: 1fr;
    }


    .subject-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .timeline-track {
        grid-template-columns: repeat(2, 1fr);
    }


    .timeline-item:nth-child(2n) {
        border-right: 0;
    }


    .residential-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .regional-grid {
        gap: 30px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .section {
        padding: 75px 0;
    }


    .top-notice-inner {
        justify-content: center;
    }


    .top-notice-inner>span {
        font-size: 7px;
    }


    .top-notice-inner a {
        display: none;
    }


    .nav {
        min-height: 72px;
    }


    .navigation {
        top: 72px;
    }


    .brand-mark {
        width: 41px;
        height: 41px;
    }


    .brand-name strong {
        font-size: 17px;
    }


    .brand-name small {
        font-size: 6px;
    }


    .hero {
        min-height: 720px;
    }


    .hero-content {
        padding: 75px 0;
    }


    .hero h1 {
        font-size: 65px;

        letter-spacing: -1px;
    }


    .hero-content>p {
        font-size: 13px;
    }


    .hero-actions {
        flex-direction: column;
    }


    .hero-trust {
        grid-template-columns: repeat(2, 1fr);

        margin-top: 50px;
    }


    .hero-trust div {
        padding-bottom: 15px;

        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }


    .hero-trust div:nth-child(2) {
        border-right: 0;
    }


    .hero-side {
        display: none;
    }


    .disclaimer-inner {
        grid-template-columns: 38px 1fr;
    }


    .intro-index {
        font-size: 70px;
    }


    .intro h2,
    .section-heading h2,
    .pattern-header h2,
    .preparation-content h2,
    .application-heading h2,
    .counselling-content h2,
    .residential-heading h2,
    .fees h2,
    .regional h2,
    .faq-intro h2,
    .contact-information h2 {
        font-size: 49px;
    }


    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .aissee-main {
        padding: 30px;
    }


    .aissee-main h3 {
        font-size: 39px;
    }


    .exam-facts {
        grid-template-columns: repeat(2, 1fr);
    }


    .exam-facts div {
        padding-bottom: 15px;
    }


    .subject-grid {
        grid-template-columns: 1fr;
    }


    .pattern-row {
        grid-template-columns: 1fr;

        gap: 5px;
    }


    .pattern-row.heading {
        display: none;
    }


    .preparation-photo img,
    .counselling-image img {
        height: 420px;
    }


    .timeline-track {
        grid-template-columns: 1fr;
    }


    .timeline-item {
        min-height: 100px;

        border-right: 0;

        border-bottom: 1px solid var(--border);
    }


    .date-note {
        grid-template-columns: 1fr;
    }


    .application-grid {
        grid-template-columns: 1fr;
    }


    .application-grid>div:nth-child(2n) {
        border-right: 1px solid rgba(255, 255, 255, .13);
    }


    .counselling-points {
        grid-template-columns: 1fr;
    }


    .residential-grid {
        grid-template-columns: 1fr;
    }


    .fee-list>div {
        grid-template-columns: 35px 1fr;
    }


    .fee-list em {
        grid-column: 2;
    }


    .regional {
        padding: 75px 0;
    }


    .faq-question {
        font-size: 18px;
    }


    .cta-inner {
        flex-direction: column;

        align-items: flex-start;
    }


    .cta h2 {
        font-size: 51px;
    }


    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .contact-form {
        padding: 25px;
    }


    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 35px;
    }


    .footer-brand {
        grid-column: span 2;
    }


    .footer-bottom {
        flex-direction: column;
    }

}


/* =====================================================
   SMALL PHONES
===================================================== */

@media (max-width: 380px) {

    .container {
        width: 90%;
    }


    .hero h1 {
        font-size: 57px;
    }


    .intro h2,
    .section-heading h2,
    .pattern-header h2,
    .preparation-content h2,
    .application-heading h2,
    .counselling-content h2,
    .residential-heading h2,
    .fees h2,
    .regional h2,
    .faq-intro h2,
    .contact-information h2 {
        font-size: 43px;
    }


    .quick-grid {
        grid-template-columns: 1fr;
    }

}