@import "line-square-icon-font.css";
:root {
    --navy-900: #00132b;
    --navy-800: #122F4E;
    --navy-700: #1B3D63;
    --navy-500: #2E5A8A;
    --navy-300: #6B8AB0;
    --ink: #0E2A47;

    --amber-500: #F5C24A;
    --amber-600: #E2AB30;
    --amber-100: #FCE7B0;
    --amber-50: #FEF6DF;

    --surface: #F4F6F9;
    --card: #FFFFFF;
    --line: #E2E8F0;
    --muted: #6B7A8F;

    --success: #16A34A;
    --radius: 12px;
    --radius-lg: 18px;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Tajawal", "Cairo", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: var(--ink);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    line-height: 1.6;
    font-weight: 500;
}

h1, h2, h3, h4 {
    font-family: "Cairo", "Tajawal", system-ui, sans-serif;
}

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

img {
    display: block;
    max-width: 100%;
}
.logo{
    width: 160px;
}
.wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.blue-bg{
    background-image: url("/images/blue-bg.jpg?v=c4c98e7");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/* ============ TOP NAV ============ */
.topbar {
    background: var(--navy-900);
    position: sticky;
    top: 0;
    z-index: 50;
}

.topbar-socials {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    padding: 10px 24px 0;
    max-width: 1240px;
    margin: 0 auto 10px;
}

.topbar-socials a {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--navy-900);
    background-color: #fff;
    font-size: 12px;
    font-weight: 700;
    transition: transform .15s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.topbar-socials a.lsi-facebook{
    padding-left: 3px;
    font-size: 16px;
}
.topbar-socials a.lsi-instagram{
    padding-left: 3px;
    font-size: 18px;
}
.topbar-socials a.lsi-youtube{
    padding-left: 7px;
}

.topbar-socials a:hover {
    transform: translateY(-1px);
}

.topbar-inner {
    display: flex;
    align-items: stretch;
    gap: 18px;
    padding: 4px 24px 14px;
}

/* Logo lockup: yellow tile w/ icon + wordmark + navy ribbon */
.brand {
    overflow: hidden;
    align-self: center;
}

.brand-top {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px 8px 10px;
}

.brand-mark {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.abacus {
    width: 48px;
    height: 50px;
    color: var(--navy-900);
}

.abacus svg {
    width: 100%;
    height: 100%;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-align: left;
}

.brand-text .l1 {
    font-family: "Cairo", sans-serif;
    font-weight: 900;
    font-size: 28px;
    color: var(--navy-900);
    line-height: 1;
    letter-spacing: -0.01em;
}

.brand-text .l2 {
    font-family: "Cairo", sans-serif;
    font-weight: 800;
    font-size: 13px;
    color: var(--navy-900);
    margin-top: 4px;
    letter-spacing: 0;
}

.brand-text .tag {
    display: none;
}

.brand-ribbon {
    background: var(--navy-900);
    color: #fff;
    font-family: "Cairo", sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    text-align: center;
    letter-spacing: 0;
}

.nav {
    display: flex;
    gap: 18px;
    align-items: center;
    flex: 1;
    justify-content: center;
    font-size: 13.5px;
    font-weight: 700;
    font-family: "Cairo", sans-serif;
    white-space: nowrap;
    color: var(--surface);
}

.nav a {
    color: var(--surface);
    padding: 6px 2px;
    position: relative;
    transition: color .15s;
}

.nav a:hover {
    color: var(--amber-600);
}

.nav a.active {
    color: var(--surface);
}

.nav a.active::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -6px;
    width: 70%;
    height: 3px;
    background: var(--amber-500);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
    align-self: center;
}

.btn-outline {
    background: #fff;
    color: var(--navy-900);
    box-shadow: inset 0 0 0 1.5px var(--navy-900);
}

.btn-outline:hover {
    background: var(--navy-900);
    color: #fff;
}

.brand-mark {
    width: 64px;
    height: 64px;
    background: var(--amber-500);
    border-radius: 8px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    position: relative;
}
#nav-contact{
    background-color: var(--navy-900);
    color: #fff;
    text-align: center;
    border: 1px solid var(--amber-500);
    box-shadow: 2px 0 0 rgba(245, 194, 74, 0.8);
    padding: 8px 12px;
}
/* triangular figure-stack abacus icon */
.abacus {
    width: 46px;
    height: 50px;
    position: relative;
    color: var(--navy-900);
}

.abacus svg {
    width: 100%;
    height: 100%;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
    text-align: left;
}

.brand-text .l1 {
    font-family: "Cairo", sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: var(--navy-900);
    letter-spacing: 0;
    line-height: 1;
}

.brand-text .l2 {
    font-family: "Cairo", sans-serif;
    font-weight: 800;
    font-size: 13px;
    color: var(--navy-900);
    margin-top: 3px;
    letter-spacing: -0.01em;
}

.brand-text .tag {
    margin-top: 5px;
    font-size: 9.5px;
    color: #fff;
    background: var(--navy-900);
    padding: 3px 6px;
    font-weight: 700;
    border-radius: 3px;
    align-self: stretch;
    text-align: center;
}

.nav {
    display: flex;
    gap: 18px;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    font-size: 13.5px;
    font-weight: 700;
    font-family: "Cairo", sans-serif;
    white-space: nowrap;
    margin-top: 30px;
}

.nav a {
    color: var(--surface);
    padding: 6px 2px;
    position: relative;
    transition: color .15s;
}

.nav a:hover {
    color: var(--amber-600);
}

.nav a.active {
    color: var(--amber-600);
}

.nav a.active::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -4px;
    width: 60%;
    height: 2.5px;
    background: var(--amber-500);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    border-radius: 30px;
    border: 0;
    cursor: pointer;
    transition: transform .12s ease, background .15s, box-shadow .15s;
    white-space: nowrap;
}

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

.btn-primary {
    background: var(--amber-500);
    color: var(--navy-900);
}

.btn-primary:hover {
    background: var(--amber-600);
}

.btn-outline {
    background: #fff;
    color: var(--navy-900);
    box-shadow: inset 0 0 0 1.5px var(--navy-900);
}

.btn-outline:hover {
    background: var(--navy-900);
    color: #fff;
}

.btn-ghost-light {
    background: rgba(255, 255, 255, .06);
    color: #fff;
    box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .4);
}

.icon-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: currentColor;
    opacity: .15;
    display: inline-block;
}

/* ============ HERO ============ */
.hero {
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 56px 0 25px;
}

/* chalkboard math doodles */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .04) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, .04) 0 1px, transparent 2px);
    background-size: 60px 60px, 90px 90px;
    pointer-events: none;
}

.hero-doodles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    color: rgba(255, 255, 255, .07);
    font-family: "Inter", monospace;
    font-size: 18px;
    overflow: hidden;
}

.hero-doodles span {
    position: absolute;
    font-weight: 700;
    user-select: none;
}

.hero-grid {
    background-image: url("/images/abcus.png?v=c4c98e7");
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
    background-position: left bottom -50px;
}

.hero-copy {
    padding: 20px 0;
    text-align: center;
}

.hero h1 {
    color: var(--amber-500);
    margin: 0 0 18px;
    font-size: 56px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.01em;
}

.hero h1 .em {
    color: #fff;
}

.hero .lead {
    font-size: 22px;
    font-weight: 700;
    color: var(--amber-500);
    margin: 0 0 18px;
    line-height: 1.5;
    max-width: 520px;
}

.hero p.body {
    font-size: 16px;
    color: rgba(255, 255, 255, .85);
    margin: 0 0 28px;
    max-width: 520px;
    line-height: 1.85;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 480px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-visual > img {
    max-height: 480px;
    width: auto;
    object-fit: contain;
}

.hero-blob {
    position: absolute;
    inset: 20px 0 20px 40px;
    background: var(--amber-500);
    border-radius: 50% 42% 48% 50% / 50% 56% 44% 50%;
}

.hero-blob::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--navy-900) 1.5px, transparent 1.6px);
    background-size: 14px 14px;
    border-radius: inherit;
    opacity: .22;
    -webkit-mask-image: radial-gradient(circle at 30% 30%, black 35%, transparent 65%);
    mask-image: radial-gradient(circle at 30% 30%, black 35%, transparent 65%);
}

.hero-photo {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: repeating-linear-gradient(135deg, rgba(255, 255, 255, .08) 0 12px, rgba(255, 255, 255, .02) 12px 24px),
    linear-gradient(180deg, rgba(245, 194, 74, .18), rgba(245, 194, 74, .05));
    border: 1.5px dashed rgba(255, 255, 255, .35);
    display: grid;
    place-items: center;
    text-align: center;
    padding: 24px;
    color: rgba(255, 255, 255, .7);
    font-family: "Inter", monospace;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hero-photo .ph-label {
    background: rgba(14, 42, 71, .6);
    padding: 8px 14px;
    border-radius: 6px;
    color: #fff;
}

.hero-bulb {
    position: absolute;
    top: 24px;
    right: 28%;
    width: 64px;
    height: 64px;
    background: var(--amber-500);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(245, 194, 74, .18), 0 0 0 18px rgba(245, 194, 74, .08);
    display: grid;
    place-items: center;
    z-index: 2;
    color: var(--navy-900);
    font-size: 28px;
}

.hero-abacus {
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 220px;
    height: 130px;
    z-index: 2;
}

.hero-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    justify-content: space-between;
    width: 100%;
    pointer-events: none;
    padding: 0 12px;
}

.hero-arrow {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: var(--navy-900);
    border: 0;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
    font-size: 18px;
    font-weight: 700;
}

.hero-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.hero-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
}

.hero-dots span.on {
    background: var(--amber-500);
    width: 24px;
    border-radius: 4px;
}

/* ============ FEATURE STRIP ============ */
.edu-icon{
    width: 36px;
    margin: 0 auto;
}
.feature-strip {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 30px rgba(14, 42, 71, .08);
    margin-top: -40px;
    position: relative;
    z-index: 5;
    padding: 32px 12px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.feat {
    text-align: center;
    padding: 6px 14px;
    position: relative;
}

.feat + .feat::before {
    content: "";
    position: absolute;
    top: 14px;
    bottom: 14px;
    right: -4px;
    width: 1px;
    background: var(--line);
}

.feat .ic {
    width: 56px;
    height: 56px;
    margin: 0 auto 10px;
    display: grid;
    place-items: center;
    color: var(--amber-600);
    font-size: 32px;
}

.feat h4 {
    margin: 0 0 6px;
    color: var(--amber-600);
    font-size: 18px;
    font-weight: 800;
}

.feat p {
    margin: 0;
    color: var(--navy-900);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
}

/* ============ WHO WE ARE ============ */
.who {
    padding: 80px 0 60px;
}

.who-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.who-text {
    background: var(--navy-900);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 32px;
}

.who-text h2 {
    color: var(--amber-500);
    font-size: 32px;
    font-weight: 900;
    margin: 0 0 22px;
}

.who-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.who-text li {
    display: flex;
    gap: 12px;
    font-size: 14.5px;
    line-height: 1.85;
    color: rgba(255, 255, 255, .92);
}

.check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--amber-500);
    color: var(--navy-900);
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 900;
    margin-top: 4px;
}

.who-photo {
    border-radius: var(--radius-lg);
    background: repeating-linear-gradient(135deg, rgba(14, 42, 71, .08) 0 14px, rgba(14, 42, 71, .03) 14px 28px),
    linear-gradient(180deg, #FFF7E0, #FBE8B0);
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--navy-700);
    font-family: "Inter", monospace;
    font-size: 13px;
    font-weight: 600;
    border: 1.5px dashed var(--amber-600);
    padding: 24px;
}

.who-photo .ph-label {
    background: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    color: var(--navy-900);
}

.who-medal {
    background: var(--surface);
    border-radius: var(--radius-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    overflow: hidden;
}

.who-medal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

.medal {
    width: 130px;
    height: 130px;
    background: radial-gradient(circle at 40% 35%, #FFE48A 0%, var(--amber-500) 55%, #C7951F 100%);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--navy-900);
    font-weight: 900;
    box-shadow: inset 0 0 0 4px rgba(0, 0, 0, .08),
    inset 0 0 0 8px rgba(255, 255, 255, .35),
    0 8px 18px rgba(245, 194, 74, .35);
    position: relative;
}

.medal::before, .medal::after {
    content: "";
    position: absolute;
    bottom: -34px;
    width: 18px;
    height: 36px;
    background: #C8202B;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
}

.medal::before {
    left: 18%;
    transform: rotate(-12deg);
    background: #C8202B;
}

.medal::after {
    right: 18%;
    transform: rotate(12deg);
    background: #1F3F8B;
}

.medal .num {
    font-size: 38px;
    line-height: 1;
}

.medal .yr {
    font-size: 12px;
    margin-top: 2px;
}

.who-medal h3 {
    margin: 18px 0 0;
    color: var(--navy-900);
    font-size: 18px;
    font-weight: 800;
}

.who-medal p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 13px;
}

/* ============ INFO CARDS ============ */
.info {
    padding: 0 0 70px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.info-card {
    background: var(--amber-50);
    border-radius: var(--radius-lg);
    padding: 26px 24px 22px;
    display: flex;
    flex-direction: column;
    border: 1px solid #F0E6C9;
}

.info-card .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.info-card .head .ic {
    width: 44px;
    height: 44px;
    background: var(--amber-100);
    color: var(--amber-600);
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 22px;
    flex-shrink: 0;
}
info-card .head .icon {
    width: 44px;
    height: 44px;
    background: var(--amber-100);
    color: var(--amber-600);
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 22px;
    flex-shrink: 0;
}
.info-card .head h3 {
    margin: 0;
    color: var(--navy-900);
    font-size: 18px;
    font-weight: 800;
    text-align: left;
    direction: rtl;
    flex: 1;
    text-align: right;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.info-card li {
    display: flex;
    gap: 8px;
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--navy-800);
}

.info-card li .tick {
    flex-shrink: 0;
    color: var(--success);
    font-weight: 900;
    font-size: 14px;
    margin-top: 2px;
}

.info-card .more {
    align-self: flex-start;
    background: var(--navy-900);
    color: #fff;
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
}

/* ============ ACHIEVEMENTS ============ */
.achv {
    background: var(--surface);
    padding: 70px 0;
}

.achv h2 {
    text-align: center;
    color: var(--navy-900);
    font-size: 32px;
    font-weight: 900;
    margin: 0 0 36px;
}

.achv-grid {
    display: grid;
    grid-template-columns:0.6fr 2.5fr 0.6fr;
    gap: 18px;
    align-items: stretch;
    margin-bottom: 20px;
}
.achv-inner{
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    align-items: stretch;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    padding: 26px 24px;
    gap: 18px;
}

.achv-photo {
    border-radius: var(--radius-lg);
    background: repeating-linear-gradient(135deg, rgba(14, 42, 71, .07) 0 12px, rgba(14, 42, 71, .02) 12px 24px),
    linear-gradient(180deg, #E9EEF6, #C9D6E6);
    border: 1.5px solid #C9D6E6;
    place-items: center;
    text-align: center;
    color: var(--navy-700);
    font-family: "Inter", monospace;
    font-size: 12px;
    font-weight: 600;
    min-height: 280px;
    overflow: hidden;
}

.achv-photo .ph-label {
    background: #fff;
    padding: 6px 12px;
    border-radius: 6px;
}

.achv-block {
}

.achv-block h3 {
    margin: 0 0 16px;
    color: var(--success);
    font-size: 22px;
    font-weight: 900;
    text-align: right;
}

.achv-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.achv-block li {
    display: flex;
    gap: 8px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--navy-900);
}

.achv-block li .tick {
    color: var(--success);
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 2px;
}

.achv-block .more {
    margin-top: 18px;
    color: var(--navy-900);
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.achv-block .more::after {
    content: "←";
    transition: transform .15s;
}

.achv-block .more:hover::after {
    transform: translateX(-3px);
}

.achv-trophy {
    color: #fff;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.trophy {
    width: 80px;
    height: 90px;
    position: relative;
    margin-bottom: 8px;
    color: var(--amber-500);
}

.trophy svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 6px 12px rgba(245, 194, 74, .4));
}

.achv-trophy .big {
    font-size: 12px;
    opacity: .85;
}

.achv-trophy .num {
    font-size: 38px;
    font-weight: 900;
    color: var(--amber-500);
    line-height: 1;
}

.achv-trophy .lbl {
    font-size: 13px;
    opacity: .9;
}
.achv-trophy .trophy-info{
    background: var(--navy-900);
    padding: 10px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--amber-500);
    margin-top: -57px;
}
.achv-photo img {
    min-width: 190px;
    object-fit: cover;
    object-position: center;
    min-height: 100%;
}

/* ============ CTA BAND ============ */
.cta-band {
    color: #fff;
    position: relative;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 90% 50%, rgba(245, 194, 74, .10) 0, transparent 40%);
    pointer-events: none;
}

.cta-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
    position: relative;
}
.cta-text{
    text-align: center;
    padding: 10px 0;
}
.cta-band .btn-primary {
    padding: 14px 28px;
    font-size: 15px;
}

.cta-text h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 900;
}

.cta-text p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
}

.cta-kids {
    width: 200px;
    height: 110px;
    background: repeating-linear-gradient(135deg, rgba(255, 255, 255, .07) 0 10px, rgba(255, 255, 255, .02) 10px 20px);
    border: 1.5px dashed rgba(255, 255, 255, .3);
    border-radius: 12px;
    display: grid;
    place-items: center;
    text-align: center;
    color: rgba(255, 255, 255, .7);
    font-family: "Inter", monospace;
    font-size: 11px;
    font-weight: 600;
    padding: 8px;
}
.cta-img{
    height: 90px;
    margin-top: -20px;
    margin-bottom: -5px;
}

/* ============ FOOTER ============ */
footer {
    background: #fff;
    padding: 60px 0 24px;
    border-top: 1px solid var(--line);
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.foot h4 {
    margin: 0 0 18px;
    color: var(--navy-900);
    font-size: 16px;
    font-weight: 800;
}

.foot ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.foot li {
    color: var(--navy-800);
    font-size: 14px;
}

.foot li a:hover {
    color: var(--amber-600);
}

.foot.brand-col .brand-mark {
    width: 80px;
    height: 80px;
}

.foot.brand-col .brand-text .l1 {
    font-size: 26px;
}

.foot.brand-col .brand-text .l2 {
    font-size: 20px;
}
.foot .logo{
    width: 95%;
}
.contact-row {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--navy-800);
    font-size: 14px;
    direction: ltr;
    justify-content: flex-end;
}

.contact-row .ic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--amber-100);
    color: var(--amber-600);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 14px;
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--surface);
    color: var(--navy-900);
    display: grid;
    place-items: center;
    font-size: 14px;
    transition: background .15s, color .15s;
}

.socials a:hover {
    background: var(--amber-500);
    color: var(--navy-900);
}

.copyright {
    text-align: center;
    color: var(--muted);
    font-size: 12.5px;
    border-top: 1px solid var(--line);
    margin-top: 40px;
    padding-top: 22px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        height: 380px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .feature-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .feat:nth-child(n+4)::before {
        display: none;
    }

    .who-grid {
        grid-template-columns: 1fr 1fr;
    }

    .who-medal {
        grid-column: 1 / -1;
        flex-direction: row;
    }

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

    .achv-grid {
        grid-template-columns: 1fr 1fr;
    }

    .achv-photo:nth-child(1), .achv-photo:nth-child(3) {
        display: none;
    }

    .achv-trophy {
        grid-column: 1 / -1;
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav {
        display: none;
    }
}

@media (max-width: 640px) {
    .feature-strip {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px 6px;
    }

    .feat::before {
        display: none !important;
    }

    .who-grid, .info-grid, .achv-grid, .foot-grid, .achv-inner {
        grid-template-columns: 1fr;
    }
    .achv-inner{
        gap: 18px;
    }
    .hero h1 {
        font-size: 34px;
    }

    .hero .lead {
        font-size: 18px;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-kids, .cta-img {
        display: none;
    }
    .cta-band .btn{
        margin-bottom: 15px;
    }
    .foot .logo{
        width: auto;
    }
}

/* ============ ANIMATIONS ============ */

/* Scroll reveal initial state — GSAP animates these to opacity:1 / y:0 */
.will-animate {
  opacity: 0;
  transform: translateY(40px);
}

/* ---- Micro-interactions ---- */
.feat {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}
.feat:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(14, 42, 71, .12);
}

.info-card {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.info-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber-500);
  box-shadow: 0 8px 24px rgba(14, 42, 71, .10);
}

/* Override existing translateY(-1px) on .btn:hover with scale */
.btn:hover {
  transform: scale(1.04);
}

.topbar-socials a {
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.topbar-socials a:hover {
  transform: scale(1.2);
  background: var(--amber-500);
  color: var(--navy-900);
}

.achv-photo img {
  transition: transform 0.4s ease;
}
.achv-photo:hover img {
  transform: scale(1.04);
}

.socials a {
  transition: background 0.15s, color 0.15s, transform 0.2s;
}
.socials a:hover {
  transform: scale(1.1);
}

/* ============ HAMBURGER ============ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: none;
  border: 1.5px solid rgba(255, 255, 255, .3);
  border-radius: 8px;
  cursor: pointer;
  align-self: center;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (max-width: 1024px) {
  .hamburger { display: flex; }
}

/* ============ MOBILE DRAWER ============ */
.mobile-drawer {
  background: var(--navy-900);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  position: relative;
  z-index: 49;
}
.mobile-drawer.open { max-height: 420px; }

.mobile-drawer nav {
  display: flex;
  flex-direction: column;
  padding: 8px 24px 20px;
}
.mobile-drawer nav a {
  color: rgba(255, 255, 255, .85);
  font-family: "Cairo", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: color 0.15s;
}
.mobile-drawer nav a:last-child { border-bottom: none; }
.mobile-drawer nav a:hover,
.mobile-drawer nav a.active { color: var(--amber-500); }

.drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .3);
  z-index: 40;
}
.drawer-backdrop.open { display: block; }

/* ============ HERO SLIDES ============ */
.hero-slides {
  position: relative;
  min-height: 540px;
  background-image: url("/images/abcus.png?v=c4c98e7");
  background-repeat: no-repeat;
  background-position: left bottom -50px;
  z-index: 1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
  padding: 20px 0;
  opacity: 0;
  pointer-events: none;
    bottom: -30px;
}
/* First slide starts visible; GSAP takes over after DOMContentLoaded */
.hero-slide:first-child {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide.inactive {
  pointer-events: none !important;
}

@media (max-width: 1024px) {
  .hero-slides { min-height: 620px; }
  .hero-slide  { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-slides { min-height: 500px; }
}