:root{
    --navy-blue:#1A3163;
    --gold: #EFA11E;
    --slate: #050F27;
    --light: #FBF9F6;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light);
    color: var(--slate);
    line-height: 1.6;
  }
  
/* TYPOGRAPHY */
h1.hero-title {
    font-family: 'Chronicle Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
    margin-top: 5rem;
    color: var(--navy-blue);
  }
  
  h2 {
    font-family: 'Chronicle Display', serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
  }
  
  h3, h4 {
    font-family: 'Chronicle Display', serif;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
  }
  
  p {
    font-size: 1rem;
    font-weight: 300;
  }
  
  .highlight {
    color: var(--gold);
    font-style: italic;
  }
  
  .highlight-alt {
    color: var(--gold);
    font-style: italic;
  }
  
  .bold {
    font-weight: 500;
  }
  
  /* LAYOUT */
  .container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  section {
    padding: 4rem 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards;
  }
  
  section:nth-of-type(2) {
    animation-delay: 0.2s;
  }
  section:nth-of-type(3) {
    animation-delay: 0.4s;
  }
  section:nth-of-type(4) {
    animation-delay: 0.6s;
  }
  section:nth-of-type(5) {
    animation-delay: 0.8s;
  }
  section:nth-of-type(6) {
    animation-delay: 1s;
  }
  
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* NAVBAR */
  .navbar {
    background-color: var(--light);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .navbar-container {
    max-width: 90%;
    margin: auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-left{
    display: flex;
    flex-direction: row;
    gap: 40px;
}
  
  .nav-logo {
    height: 30px;
    width: auto;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
  }
  
  .nav-links li a {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    color: var(--slate);
    transition: color 0.3s ease;
  }
  
  .nav-links li a:hover {
    color: var(--gold);
  }
  
  .cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--gold);
    color: var(--light);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }
  
  .cta-btn:hover {
    background-color: #d38f1c;
  }
  
  .cta-icon {
    height: 16px;
    width: auto;
  }

  /* ABOUT SECTION */
  .circle-imgs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
  }
  
  .circle {
    width: 40%;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
  }

  .about{
    padding-bottom: 0;
  }

  .about-container{
    background-image: url(./blue-bg.png);
    background-size: cover;
    height: 818px;
    margin-top: -300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .about-text{
    padding-top: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .about-text h2{
    color: var(--light);
    text-align: center;
    padding: 0 10%;
  }

  .about-columns {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 50px;
    padding-left: 10%;
    padding-right: 10%;
  }

  .about-columns > div {
    flex: 1 1 300px;
    max-width: 500px;
  }

  .about-columns h3{
    color: var(--gold);
  }

  .about-columns p{
    color: var(--light);
  }

  
  /* INITIATIVE BY */

  .initiative{
    padding-bottom: 0;
  }

  .initiative h2{
    text-align: center;
    color: var(--navy-blue);
  }
  
  .logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
  }

  .logos img{
    height: 80px;
    width: auto;
  }

  /* INFRASTRUCTURE */
  
  .infrastructure {
    background-color: var(--light);
    padding: 80px 0;
  }
  
  .infrastructure .container {
    max-width:90%;
    margin: auto;
  }

  .infra-header {
    text-align: left;
    margin-bottom: 100px;
    background-image: url(./blue-bg.png);
    background-size: cover;
    padding: 30px 40px;
    border-radius: 5px;
    max-width: 100%;
  }

  .infra-top{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
  }

  .infrastructure h2 {
    font-family: 'Chronicle Display', serif;
    font-weight: 700;
    color: var(--light);
    margin: 0;
  }

  #infra-tag{
    margin: 0;
  }
  
  .infrastructure p {
    line-height: 1.6;
    color: var(--light);
  }
  
  .tag {
    display: inline-block;
    margin-top: 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--navy-blue);
    background-color: var(--light);
    border: 2px solid #EFA11E;
    padding: 6px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
  }
  
  .infra-cards {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch; 
    margin-bottom: 100px;
    width: 100%;
  }
  
  .infra-card {
    background-image: url(./blue-bg.png);
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
    gap: 16px;
    flex: 1 1 300px;
    max-width: 360px;
  }
  
  .infra-card:hover {
    transform: translateY(-4px);
  }
  
  .infra-card img {
    height: 80px;
    width: auto;
  }
  
  .infra-card h3 {
    color: var(--light);
    margin: 0;
  }
  
  .infra-card p {
    width: 80%;
    color: var(--light);
    text-align: center;
  }
  
  .infra-map{
    background-image: url(./blue-bg.png);
    background-size: cover;
    padding: 60px 40px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .infra-map img {
    width: 100%;
    max-width: 800px;
    display: block;
  }
  
  /* Animation */
  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeInUp 1s ease forwards;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* WHAT WE DO */
  .what {
    background-image: url(./blue-bg.png);
    background-size: cover;
    padding: 80px 0;
  }

  .what-intro {
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: center;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--light); /* for blue-bg sections */
    font-family: 'Poppins', sans-serif;
  }

  .what-highlight {
    display: block;
    font-style: italic;
    color: var(--gold);
    margin: 1rem 0;
  }
  
  .what .container {
    max-width: 90%;
    margin: auto;
    padding: 0 24px;
  }
  
  .section-heading {
    text-align: center;
    color: var(--light);
    margin-bottom: 24px;
  }
  
  .what-cards {
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
  }
  
  .what-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Make all cards equal height */
    background-color: var(--light);
    border-radius: 12px;
    overflow: hidden;
    max-width: 360px;
    transition: transform 0.3s ease;
  }

  .card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
    text-align: left;
  }

  .card-title {
    font-family: 'Chronicle Display', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--navy-blue);
    margin-bottom: 0;
  }

  .card-description {
    flex-grow: 1; /* 📌 Pushes highlight down */
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--slate);
    margin-bottom: 0;
  }

  .card-highlight {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--gold);
    line-height: 1.5;
    margin-top: auto;
    white-space: pre-line; /* 🔧 Preserves line breaks */
  }

  .card-img-wrapper {
    position: relative;
    width: 100%;
    height: auto;
  }
  
  .card-img-wrapper img {
    width: 100%;
    display: block;
    padding: 10px;
    padding-bottom: 0;
  }
  
  .card-label {
    position: absolute;
    top: 24px;
    left: 24px;
    background-color: var(--light);
    color: var(--navy-blue);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    border: 2px solid #EFA11E;
  }
  
  .what-card p {
    padding: 20px;
    flex-grow: 1;
    text-align: left;
  }
  
  /* JOIN SECTION */
  .join {
    background-color: --light;
    padding: 80px 0;
  }
  
  .join-container {
    max-width: 80%;
    margin: auto;
    padding: 100px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 48px;
  }
  
  .join-left {
    flex: 1 1 400px;
  }
  
  .join-left h2 {
    color: var(--navy-blue);
    line-height: 1.3;
    margin-bottom: 24px;
  }
  
  .italic {
    font-style: italic;
  }
  
  .join-btn {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #efa11e;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--navy-blue);
    text-decoration: none;
    background-color: transparent;
    transition: all 0.3s ease;
  }
  
  .join-btn:hover {
    background-color: var(--gold);
    color: var(--light);
  }
  
  .join-right {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .audience-group {
    display: flex;
    flex-direction: column;
  }
  
  .audience-label {
    font-family: 'Chronicle Display', serif;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 4px;
  }
  
  .audience-desc {
    color: var(--navy-blue);
    line-height: 1.5;
  }
  
  /* Animation */
  .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* FOOTER */
  .footer {
    background-color: var(--slate);
    padding: 40px 0;
  }
  
  .footer-container {
    max-width: 90%;
    margin: auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
  }
  
  .footer-left .footer-logo {
    height: 60px;
    width: auto;
  }
  
  .footer-heading {
    color: var(--light);
    margin-bottom: 8px;
    text-align: right;
  }
  
  .footer-icons {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
  }
  
  .footer-icons img {
    height: 30px;
    width: auto;
    transition: opacity 0.3s ease;
  }
  
  .footer-icons a:hover img {
    opacity: 0.7;
  }
  
  
/* ========= RESPONSIVE MEDIA QUERIES ========= */
@media screen and (max-width: 1380px){
  .infra-header{
    margin-bottom: 50px;
  }
  .infra-cards{
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 1300px){
  .infra-header{
    margin-bottom: 24px;
  }
  .infra-cards{
    margin-bottom: 24px;
  }
}


@media screen and (max-width: 1024px) {
  h1.hero-title {
    font-size: 48px;
  }
  h2.section-heading {
    font-size: 32px;
  }
  h3 {
    font-size: 20px;
  }
  .subtitle {
    font-size: 20px;
  }
  p .body-text {
    font-size: 15px;
  }
  .small {
    font-size: 13px;
  }
  .pre-title,
  .button-text {
    font-size: 9px;
  }
  .link {
    font-size: 15px;
  }
  .about-container{
    margin-top: -200px;
    height: 700px;
  }
  .about-text {
    padding-top: 100px;
  }
}

@media screen and (max-width: 900px) {
  .about-container{
    margin-top: px;
    height: 700px;
  }
  .infra-top {
  flex-direction: column-reverse;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  }
  .infra-cards {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 24px;
    width: 100%;
    gap: 24px;
  }
  .infra-card {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
    gap: 16px;
    flex: 1 1 300px;
    max-width: 100%;
  }
  .what-cards {
    flex-direction: column;
    gap: 48px;
    justify-content: center;
    align-items: center;
}

}

@media screen and (max-width: 835px){
  .nav-links li a {
    font-size: 12px;
  }
  .nav-logo {
    height: 20px;
    width: auto;
  }
  .nav-links {
    gap: 20px;
  }
  .cta-btn {
    font-size: 10px;
    padding: 8px 12px;
  }
  .cta-icon {
    height: 12px;
    width: auto;
  }
  .join-btn{
    font-size: 10px;
    padding: 8px 12px;
  }
}

@media screen and (max-width: 768px) {
  h1.hero-title {
    margin-top: 100px;
    font-size: 36px;
  }
  h2, .section-heading {
    font-size: 28px;
  }
  h3 {
    font-size: 18px;
  }
  .subtitle {
    font-size: 18px;
  }
  p, .body-text {
    font-size: 14px;
  }
  .small {
    font-size: 12px;
  }
  .pre-title,
  .button-text {
    font-size: 8px;
  }
  .link {
    font-size: 14px;
  }
}

@media screen and (max-width: 590px){
  .nav-links {
    display: none;
  }
}

@media screen and (max-width: 575px){
  h1.hero-title {
    margin-top: 50px;
    font-size: 36px;
  }
  .about-container{
    margin-top: -150px;
    height: 700px;
  }
  .about-text {
    padding-top: 100px;
  }
  .about-container{
    margin-top: px;
    height: 700px;
  }
  .footer-icons img {
    height: 20px;
}
}

@media screen and (max-width: 480px) {
  h1.hero-title {
    font-size: 28px;
  }
  h2, .section-heading {
    font-size: 22px;
  }
  h3 {
    font-size: 16px;
  }
  .subtitle {
    font-size: 16px;
  }
  p, .body-text {
    font-size: 13px;
  }
  .small {
    font-size: 11px;
  }
  .pre-title,
  .button-text {
    font-size: 7px;
  }
  .link {
    font-size: 13px;
  }
  .about{
    padding-top: 0;
  }
  .about-container{
    margin-top: -100px;
    height: 600px;
  }
  .about-text {
    padding-top: 100px;
  }
  .cta-btn {
    font-size: 10px;
    padding: 8px 12px;
  }
}

@media screen and (max-width: 350px) {
  .about{
    padding-top: 0;
  }
  .about-container{
    margin-top: -100px;
    height: 700px;
    text-align: center;
  }
  .about-text {
    padding-top: 10px;
  }
}
