@import url('https://fonts.googleapis.com/css2?family=Momo+Signature&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



:root {
    --primary: #00A4E8;
    --secondary: #273282;
    --white: #ffffff;
    --light-bg:#F4F3EC;
    --text: #0D0A09;
}

@font-face {
  font-family: "Gotham Black";
  src: url("../font/Gotham-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Momo Signature";
  src: url("../font/MomoSignature-Regular.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Lato", sans-serif;
    font-size: 22px;
    line-height: 28px;
    color: var(--text);
}
/* ===================== UTILITIES ===================== */

.container {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 30px;
}

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

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

ul { list-style: none; }

.section-title {
    font-family: "Gotham Black", sans-serif;
    font-weight: 900;
    margin-bottom: 28px;
    font-size: 90px;
    line-height: 90px;
    text-transform: uppercase;
}
.text-blue{
    color: var(--secondary);
}
.text-sky{
    color: var(--primary);
}


.lead--white { color: var(--white); }

.italic { font-style: italic; color: var(--primary); }


/* ===================== HEADER ===================== */

.site-header {

    padding: 26px 0;
}
.site-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    background: #273282;
    box-shadow: 0 2px 10px rgb(0 0 0 / 10%);
    animation: slideDown 0.3s ease;
    padding: 10px 0;
	width: 100%;
    z-index: 999;
}
.sticky .logo  {
    margin-bottom: 0;
    max-width: 85px;
}
.mobile-logo{display:none;}
.sticky .mobile-logo  {
	display:block;
}
.sticky .destopt-logo {
	display:none;
}
.sticky .nav-list,.sticky .icon-btn{
	color: var(--white);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-list {
    display: flex;
    gap: 32px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text);
}
.nav-list a{
    text-transform: uppercase;
}

.nav-left, .nav-right { flex: 1; display: flex; }
.nav-right { justify-content: flex-end; align-items: center; gap: 28px; }

.logo {
    margin-bottom: -86px;
}

.logo-text {
    font-family: "Gotham Black", "Lato", sans-serif;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 1.5px;
    line-height: 1.3;
    text-align: center;
    color: var(--secondary);
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    display: flex;
    align-items: center;
    padding: 4px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 40;
}
.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text);
    border-radius: 2px;
    transition: all .25s ease;
}
.sticky .hamburger span,
.hamburger.is-active span{
    background: var(--white);
}
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--secondary);
    z-index: 25;
    padding: 120px 32px 40px;
    transform: translateX(100%);
    transition: transform .3s ease;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 28px; }
.mobile-menu a {
    font-family: "Gotham Black", "Lato", sans-serif;
    font-weight: 900;
    font-size: 28px;
    color: var(--white);
    text-transform: uppercase;
}

/* ===================== HERO ===================== */

.hero {
    background: url(../image/banner.png) no-repeat center;
    background-size: cover;
    min-height: 775px;
    padding-top: 150px;
    padding-bottom: 70px;
    border-radius: 0 200px 0 0;
}

.hero-content { position: relative; z-index: 2; color: var(--white); 
    max-width: 720px;
}

.hero h1{
    font-size: 74px;
    line-height: 80px;
    font-weight: 900;
 font-family: "Gotham Black", sans-serif;
 padding-bottom: 50px;
 text-transform: uppercase;
}
.hero h1 span{
 display: block;
    font-weight: 400;
    font-size: 150px;
    line-height: 157px;
    color: var(--light-bg);
    margin-left: -80px;
      font-family: "Momo Signature";
      text-transform: capitalize;

}

.theme-btn {
    display: inline-block;
    font-weight: 600;
    background: var(--white);
    color: var(--primary);
    font-size: 15px;
    line-height: 20px;
    padding: 20px 40px;
    border-radius: 0 35px 0 0;
    text-transform: uppercase;
}
.text-center{
    text-align: center;
}

/* ===================== ABOUT ===================== */

.about { padding: 110px 0 90px;}

.lead {
    font-weight: 700;
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 25px;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    font-size: 17px;
    line-height: 1.6;
}
.about-col p { margin-bottom: 20px; }
.about-cta { margin-top: 8px; color: #8a8a8a; font-size: 17px; }

/* ===================== VISION ===================== */

.vision {
    background: var(--light-bg);
    padding: 110px 0 110px;
    position: relative;
    overflow: hidden;
    border-radius: 200px 0 0 0;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 13px 16px;
}
.vision-card:first-child{
    grid-column: span 2;
}

.vision-card {
    background: var(--white);
    border-radius: 0 60px 0 0;
    padding: 32px 25px 28px 27px;
}
.vision-card img{
    margin-bottom: 50px;
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.vision-card h3 {
    font-family: "Gotham Black", sans-serif;
    font-weight: 900;
    color: var(--primary);
    font-size: 26px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.vision-card:first-child p{
    max-width: 275px;
}

/* ===================== WHO WE SUPPORT ===================== */

.support-section{
    display:flex;
    width:100%;
    min-height:420px;
    overflow:hidden;
    border-bottom-right-radius:120px;
    background: var(--primary);
}

.support-section .container{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
}

.support-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.support-content h2{
    margin-bottom:30px;
}

.support-content p{
    max-width:420px;
    font-size:28px;
    line-height:32px;
    font-weight:600;
}




/* ===================== DISCIPLINES ===================== */

.disciplines{
    padding:100px 0;
}

.desktop-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:70px 30px;
}

.discipline{
    text-align:center;
}

.discipline img{
    width:70px;
    height:70px;
    object-fit:contain;
    margin-bottom: 50px !important;
    margin: 0 auto;
}

.discipline p{
    font-size:22px;
    font-weight:700;
}

/* Mobile Slider */

.mobile-slider{
    display:none;
    overflow:hidden;
}

.slider-track{
    display:flex;
    transition:.4s;
}

.slide{
    min-width:100%;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px 10px;
}

.slider-nav{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:30px;
}

.slider-nav button{

    width:42px;
    height:42px;
    background:var(--white);
    color:var(--primary);
    border:3px solid var(--primary);
    font-size:22px;
    cursor:pointer;
}


/* ===================== PROGRAMMES ===================== */

.programmes { background: var(--light-bg); padding: 100px 0 110px; }

.accordion-item {
    border-bottom: 1px solid var(--secondary);
    padding: 40px 0;
}
.accordion-item:last-child{
    border: none;
}
.accordion{
    max-width: 685px;
}
.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: "Gotham Black", sans-serif;
    font-weight: 900;
    font-size: 30px;
    color: var(--primary);
    text-transform: uppercase;
}

.chevron { 
    color: var(--primary); 
    transition: transform .25s ease; 
    width: 50px;
    height: 50px; 
}

.accordion-item.is-open .chevron { 
    transform: rotate(180deg);
 }

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    font-size: 17px;
    line-height: 1.6;
    transition: max-height .3s ease;
}
.accordion-item.is-open .accordion-panel { max-height: 600px; padding-top: 18px; }
.accordion-item.is-open .accordion-panel p{
    padding-bottom: 10px;
}
.accordion-panel ul { padding-left: 20px; }
.accordion-panel li { list-style: disc; margin-bottom: 6px; }
.programmes .white-logo{
        display: flex;
    justify-content: end;
    margin-top: -105px;
}
/* ===================== RESEARCH ===================== */

.research { background: var(--white); padding: 110px 0; }

.research-grid {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap: 48px;
}

.research-statement {
    font-weight: 600;
    font-size: 28px;
    line-height: 32px;
    color: var(--secondary);
}

.research .btn-sky{
    background: var(--primary);
    color: var(--white);
    margin-top: 40px;
}
.research-copy p{
    padding-bottom: 15px;
}
/* ===================== SINGLE IMAGE ===================== */

.w-100{width: 100%;}

/* ===================== CONTACT ===================== */

.contact { background: var(--light-bg); padding: 110px 0;border-radius: 0 0 200px 0; }
.contact-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.contact-grid p { 
    font-weight: 600;
    font-size: 28px;
    line-height: 32px;
 }
.contact-grid a { color: var(--primary); font-weight: 700; }

/* ===================== FOOTER ===================== */

.site-footer { padding: 50px 0; }

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.footer-inner p { font-size: 16px; }

/* ===================== RESPONSIVE ===================== */


@media(min-width:768px){
    .mob-img{
        display: none;
    }
}
@media (max-width: 991px) {
    body { font-size: 17px; line-height: 24px; }

    .nav-left, .nav-right { display: none; }
    .hamburger { display: flex;     position: absolute;right: 30px;}
    .mobile-menu { display: block; }

    .section-title { font-size: 70px; }
    .lead { font-size: 19px; }

    .hero { min-height: 520px; padding-bottom: 60px; }
    .hero h1 {
        font-size: 60px;
        line-height: 66px;
    }
    .hero-content {
        max-width: 600px;
    }
    .hero h1 span {
        font-size: 100px;
        line-height: 110px;
    }

    .about, .vision, .programmes, .research, .contact, .disciplines { padding: 80px 0; }

    .about-grid, .research-grid { grid-template-columns: 1fr; gap: 0;}
    .vision-grid{
        gap: 13px 16px;
    }
    .support-section{
        display: block;
    }
    .support-image img{
        width: 100%;
    }
    .support-content { padding: 60px 0; max-width: 100%; }
    .white-logo{
        display: none !important;
    }
    .research .btn-sky{
        margin-top: 25px;
    }
    .contact-grid{
        grid-template-columns: 1fr;
    }
    .disciplines-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }

    .accordion-trigger { font-size: 22px; }

    .footer-inner {gap: 10px; }
}
@media(max-width:767px){
    .header-inner{
        position: relative;
    }
    .site-header{
        position: relative;
        padding-top: 50px;
    }
    .header-inner{
        justify-content: center;
    }
    .section-title{
        font-size: 30px;
        line-height: 30px;
    }
    .hero{
        padding-top: 200px;
    }
    .hero h1 span {
        font-size: 53px;
        line-height: 60px;
    }
    .hero-content h1{
        max-width: 250px !important;
        margin: 0 auto;
        text-align: center;
        font-size: 40px;
        line-height: 40px;
    }
    .hero h1 span{
        margin-left: -35px;
    }
    .hero{
        background: url('../image/mob-banner.png') no-repeat center;
        background-size: cover;
        border-radius: 0 100px 0 0;
    }
    .about{
        padding: 50px 0;
    }
    .vision{
        border-radius: 100px 0 0 0;
    }
    .vision-grid{
        grid-template-columns: 1fr;
    }
    .vision-card:first-child {
        grid-column: span 1;
    }
    .vision-card h3{
        font-size: 22px;
    }
    .support-content p{
        font-size: 22px;
        line-height: 26px;
    }
    .programmes{
        border-radius: 0 100px 0 0;
    }
    .programmes h2{
        margin-bottom: 0;
    }
    .research-statement{
        font-size: 22px;
        line-height: 26px;
    }
    .desktop-img{
        display: none;
    }
    .contact{
        padding: 50px 0;
        border-radius: 0 0 100px 0;
    }
    .contact-grid p {
        font-size: 18px;
        line-height: 22px;
    }
    .research .btn-sky {
        width: 100%;
        text-align: center;
    }
    
.desktop-grid{
    display:none;
}

.mobile-slider{
    display:block;
}

.discipline p{
    font-size:18px;
    line-height: 22px;
}
.discipline img{
    margin-bottom: 35px !important;
}
.accordion-item {
    padding: 35px 0;
}
.accordion-item:last-child{
    padding-bottom: 0;
}
.research{
    padding: 60px 0;
}
}
