:root {
    --blue: #002b49;
    --blue2: #0a426d;
    --yellow: #feca16;
    --ink: #13263a;
    --muted: #637589;
    --soft: #f4f7f9;
    --line: #dce4eb;
    --white: #fff;
    --max: 1180px;
    --shadow: 0 18px 50px rgba(0, 43, 73, 0.12);
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: Arial, "Segoe UI", sans-serif;
    color: var(--ink);
    line-height: 1.55;
    background: #fff;
}
img {
    max-width: 100%;
    height: 50px;
	width: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
button,
input,
select {
    font: inherit;
}
.container {
    width: min(calc(100% - 40px), var(--max));
    margin: auto;
}
.skip-link {
    position: absolute;
    left: 12px;
    top: -60px;
    background: #fff;
    padding: 10px 14px;
    z-index: 999;
}
.skip-link:focus {
    top: 12px;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}
.site-header {
    position: fixed;
	width: 100%;
	
    top: 0;
    z-index: 50;
    background: rgb(0 43 73 / 47%);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.brand-mark {
    width: 38px;
    height: 42px;
    border-radius: 50% 50% 45% 45%;
    display: grid;
    place-items: center;
    background: var(--yellow);
    color: var(--blue);
    font-weight: 900;
}
.brand strong {
    display: block;
    font-size: 18px;
    line-height: 1;
}
.brand small {
    font-size: 8px;
    letter-spacing: 0.13em;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 26px;
    font-weight: 700;
    font-size: 14px;
}
.nav-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 5px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
}
.btn-yellow {
    background: var(--yellow);
    color: var(--blue);
}
.btn-dark {
    background: var(--blue);
    color: #fff;
}
.btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.65);
}
.btn-small {
    min-height: 38px;
    padding: 0 16px;
}
.btn-block {
    width: 100%;
}
.hero {
	background-image: linear-gradient(#0000004a, #0000004a), linear-gradient(#524518e8, #b697356e 0%, #0000 7%, #00000094 65%, #5245188f 87%, #836d268c 100%, #000000e8), url('https://applydubai.amityuniversity.ae/assets/images/Home-Banner.avif');
    background-size: cover;
    background-position: top center;
	
    /*background: linear-gradient(120deg, #002b49 0%, #073c63 62%, #0b507d 100%);*/
    color: #fff;
    overflow: hidden;
}
.hero-grid {
    min-height: 690px;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.72fr);
    gap: 64px;
    align-items: center;
    padding: 62px 0;
}
.hero-copy {
    max-width: 690px;
}
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 900;
    color: var(--yellow);
    margin: 0 0 12px;
}
.eyebrow.dark {
    color: #8a6900;
}
.hero h1 {
    font-size: clamp(44px, 5.3vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.045em;
    margin: 0 0 20px;
}
.lead {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.84);
    max-width: 650px;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.hero-points {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 14px;
    font-weight: 700;
}
.hero-points li:before {
    content: "✓";
    color: var(--yellow);
    margin-right: 7px;
}
.form-card {
    background: #fff;
    color: var(--ink);
    padding: 26px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}
.form-card h2 {
    font-size: 28px;
    margin: 0 0 18px;
}
.lead-form {
    display: grid;
    gap: 11px;
}
.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.lead-form label {
    display: grid;
    gap: 5px;
}
.lead-form label span {
    font-size: 12px;
    font-weight: 800;
}
.lead-form input,
.lead-form select {
    width: 100%;
    height: 43px;
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 0 11px;
    background: #fff;
    color: var(--ink);
    outline: none;
}
.lead-form input:focus,
.lead-form select:focus {
    border-color: #4d7ea6;
    box-shadow: 0 0 0 3px rgba(77, 126, 166, 0.13);
}
.lead-form small {
    font-size: 11px;
    color: #778695;
}
.stats {
    border-bottom: 1px solid var(--line);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stats article {
    padding: 26px 20px;
    border-right: 1px solid var(--line);
}
.stats article:last-child {
    border-right: 0;
}
.stats strong {
    display: block;
    font-size: 32px;
    color: var(--blue);
    line-height: 1;
}
.stats span {
    font-size: 13px;
    color: var(--muted);
}
.section {
    padding: 78px 0;
    content-visibility: auto;
    contain-intrinsic-size: 700px;
}
.soft {
    background: var(--soft);
}
#international .image-card img, #aboutus .image-card img {
	height: auto;
}
h2 {
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin: 0 0 14px;
}
.muted,
.section-heading p {
    color: var(--muted);
}
.split {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}
.image-card {
    border-radius: 22px;
    overflow: hidden;
    background: #e6edf2;
}
.image-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.feature-list {
    display: grid;
    gap: 13px;
    margin-top: 28px;
}
.feature-list article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}
.feature-list b {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #fff1ae;
    display: grid;
    place-items: center;
    color: #745a00;
    font-size: 12px;
}
.feature-list h3 {
    font-size: 17px;
    margin: 0;
}
.section-heading {
    max-width: 770px;
}
.tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 28px 0;
}
.tab {
    border: 1px solid var(--line);
    background: #fff;
    padding: 11px 18px;
    border-radius: 999px;
    font-weight: 800;
    color: var(--blue);
    cursor: pointer;
}
.tab.active {
    background: var(--yellow);
    border-color: var(--yellow);
}
.programme-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.programme-grid li {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 15px;
    font-size: 14px;
    font-weight: 700;
}
.programme-grid.one {
    grid-template-columns: 1fr;
}
.scholarship {
    background: var(--yellow);
    padding: 50px 0;
}
.scholarship-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.scholarship h2 {
    margin-bottom: 8px;
}
.scholarship p:last-child {
    margin: 0;
    max-width: 760px;
}
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 26px;
}
.cards article {
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 16px;
}
.cards h3 {
    margin: 0 0 8px;
    color: var(--blue);
}
.cards p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}
.faq-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 55px;
}
.faq-list {
    display: grid;
    gap: 9px;
}
.faq-list details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0 18px;
}
.faq-list summary {
    padding: 17px 30px 17px 0;
    cursor: pointer;
    font-weight: 800;
    position: relative;
    list-style: none;
}
.faq-list summary:after {
    content: "+";
    position: absolute;
    right: 2px;
    font-size: 22px;
}
.faq-list details[open] summary:after {
    content: "−";
}
.faq-list p {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
    padding: 0 20px 17px 0;
}
.cta {
    background: var(--blue);
    color: #fff;
    padding: 55px 0;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}
.cta h2 {
    margin: 0;
}
footer {
    background: #071f32;
    color: #dce5ec;
    padding: 38px 0;
}
.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 35px;
}
.footer-grid p {
    color: #99aabc;
    font-size: 13px;
    margin: 8px 0;
}
@media (max-width: 900px) {
    .nav-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
        position: absolute;
        left: 20px;
        right: 20px;
        top: 70px;
        background: var(--blue);
        padding: 14px;
        border-radius: 12px;
        flex-direction: column;
        align-items: stretch;
    }
    .nav-menu.open {
        display: flex;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        min-height: 0;
        padding: 54px 0;
    }
    .split,
    .faq-layout {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats article:nth-child(2) {
        border-right: 0;
    }
    .programme-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cards {
        grid-template-columns: 1fr;
    }
    .scholarship-inner,
    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}
@media (max-width: 600px) {
    .container {
        width: min(calc(100% - 28px), var(--max));
    }
    .nav {
        height: 64px;
    }
    .hero-grid {
        padding: 42px 0;
    }
    .hero h1 {
        font-size: 42px;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .hero-points {
        display: grid;
        gap: 8px;
    }
    .form-card {
        padding: 20px;
        border-radius: 15px;
    }
    .field-row {
        grid-template-columns: 1fr;
    }
    .stats article {
        padding: 20px 13px;
    }
    .stats strong {
        font-size: 27px;
    }
    .section {
        padding: 58px 0;
    }
    .programme-grid {
        grid-template-columns: 1fr;
    }
    .tabs {
        display: grid;
    }
    .tab {
        width: 100%;
    }
    .footer-grid {
        flex-direction: column;
    }
    .scholarship {
        padding: 42px 0;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Compact viewport sections + 3-step form */
:root {
    --header-height: 72px;
}
.hero {
    min-height: calc(100svh - var(--header-height));
}
.hero-grid {
    min-height: calc(100svh - var(--header-height));
    padding: 34px 0;
    gap: 44px;
}
.section {
    /*min-height: calc(100svh - var(--header-height));*/
    padding: 42px 0;
    display: flex;
    align-items: center;
}
.section > .container {
    width: min(calc(100% - 40px), var(--max));
}
.scholarship {
    padding: 36px 0;
}
.cta {
    padding: 40px 0;
}
.stats article {
    padding: 20px;
}
.hero h1 {
    font-size: clamp(40px, 4.6vw, 64px);
    margin-bottom: 16px;
}
.lead {
    font-size: 16px;
    line-height: 1.5;
}
.hero-actions {
    margin-top: 20px;
}
.hero-points {
    margin-top: 20px;
}
.form-card {
    padding: 20px 22px;
    border-radius: 16px;
    max-width: 430px;
    justify-self: end;
    width: 100%;
}
.form-card h2 {
    font-size: 24px;
    margin-bottom: 10px;
}
.form-card > .eyebrow {
    margin-bottom: 5px;
}
.lead-form {
    gap: 8px;
}
.form-progress {
    margin: 2px 0 6px;
}
.form-progress-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 6px;
}
.form-progress-top strong {
    font-size: 12px;
    color: var(--blue);
}
.progress-track {
    height: 5px;
    background: #edf1f4;
    border-radius: 999px;
    overflow: hidden;
}
.progress-track span {
    display: block;
    width: 33.333%;
    height: 100%;
    background: var(--yellow);
    border-radius: inherit;
    transition: width 0.2s ease;
}
.form-step {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    border: 0;
}
.form-step[hidden] {
    display: none !important;
}
.step-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 2px 0 3px;
}
.step-heading > span {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 9px;
    background: #fff3ba;
    color: #725900;
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 900;
}
.step-heading h3 {
    font-size: 16px;
    line-height: 1.2;
    margin: 0 0 1px;
    color: var(--blue);
}
.step-heading p {
    font-size: 11px;
    line-height: 1.35;
    margin: 0;
    color: var(--muted);
}
.lead-form label span {
    font-size: 11px;
}
.lead-form input,
.lead-form select {
    height: 40px;
    border-radius: 8px;
    font-size: 14px;
}
.step-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 4px;
}
.step-actions-end {
    justify-content: flex-end;
}
.step-actions .btn {
    min-height: 40px;
    padding: 0 17px;
    font-size: 13px;
}
.btn-back {
    background: #fff;
    border-color: var(--line);
    color: var(--blue);
}
.form-consent {
    font-size: 10px !important;
    line-height: 1.35;
}
.iti {
    width: 100%;
}
.iti input {
    padding-left: 92px !important;
}

@media (max-width: 900px) {
    :root {
        --header-height: 72px;
    }
    .hero,
    .hero-grid {
        min-height: auto;
    }
    .hero-grid {
        padding: 38px 0;
        gap: 28px;
    }
    .form-card {
        justify-self: stretch;
        max-width: none;
    }
    .section {
        min-height: auto;
        padding: 52px 0;
        display: block;
    }
}
@media (max-width: 600px) {
    :root {
        --header-height: 64px;
    }
	
	.site-header {
    position: sticky;
	width: 100%;
		background: #0b2a49;
	}
    .hero-grid {
        padding: 28px 0;
    }
    .hero h1 {
        font-size: 36px;
        line-height: 1.02;
    }
    .lead {
        font-size: 15px;
    }
    .form-card {
        padding: 18px;
    }
    .section {
        padding: 44px 0;
    }
    .step-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .step-actions-end {
        grid-template-columns: 1fr;
    }
    .step-actions .btn {
        width: 100%;
    }
}
