@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
  }

  html {
    font-size: 62.5%;
  }

  body {
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    background-color: #FFFFF0;
    color: #132245;
  }

  header {
    position: sticky;
    width: 100%;
    padding: 1rem 9%;
    background-color: #132245;
    border: 2px solid #132245;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
  }
  
  .logo {
    font-size: 3rem;
    color: #FEDE42;
    font-weight: 800;
    cursor: pointer;
    transition: 0.5s ease;
  }
  
  .logo:hover {
    transform: scale(1.1);
    color: #FF791F;
  }
  
  .logo img {
    height: 50px;
    width: auto;
    display: block;
  }
  
  nav a {
    font-size: 1.8rem;
    color: #E9EDC8;
    margin-left: 4rem;
    font-weight: 500;
    transition: 0.3s ease;
    border-bottom: 3px solid transparent;
  }
  
  nav a:hover, nav a.active {
    color: #FF791F;
    border-bottom: 3px solid #FEDE42;
  }
  
  hr {
    border: none;
    height: 2px;
    background-color: #f6250a;
    margin: 40px 0;
  }
  
  footer {
    background-color: #132245;
    color: #E9EDC8;
    padding: 2rem 9%;
    text-align: center;
    border-top: 2px solid #891f1100;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .footer-section {
    flex: 1;
    min-width: 250px;
    margin: 1rem;
  }
  
  .footer-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #FEDE42;
  }
  
  .footer-section p {
    font-size: 1.4rem;
    color: #E9EDC8;
  }
  
  .footer-section a {
    color: #E9EDC8;
    font-weight: 600;
  }
  
  .footer-section a:hover {
    color: #FEDE42;
  }
  
  .footer-section a i {
    font-size: 2.5rem;
    margin: 0 10px;
    transition: transform 0.3s ease;
  }
  
  .footer-section a i:hover {
    transform: scale(1.9);
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #132245;
    min-width: 160px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: none;
    z-index: 200;
    padding: 0;
    margin: 0;
  }
  
  .dropdown-content a {
    display: block;
    padding: 10px;
    text-align: left;
    white-space: nowrap;
    color: #E9EDC8;
    transition: background 0.3s ease-in-out;
  }
  
  .dropdown-content a:hover {
    background: #005A8B;
    color: #FEDE42;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }

  .floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #00274D;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 200;
  }
  


/*
  .program-container {
    margin-top: 80px;
    max-width: 100%;
    padding: 0px 150px;
    color: #FFFFF0;
  }
  
  .program-intro {
    background-color: #FFFFF0;
    color: #132245;
    padding: 60px;
    margin-bottom: 100px;
  }
  
  .program-intro h1 {
    font-size: 70px;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .program-intro h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .program-intro p {
    padding: 0px 100px;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
  } 
*/


/* 1. Responsive container for team sections */

/*
.container {
    display: flex;
    flex-wrap: wrap; 
    width: 100%;
    margin-bottom: 100px;
    padding: 0 50px;
  }
  
  .image-side {
    flex: 1 1 40%;
    background-color: #FFFFF0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .image-side img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
  }
  
  .text-side {
    flex: 1 1 60%;
    padding: 2rem;
    background-color: #FFFFF0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .title {
    margin: 0;
    font-size: 4rem;
    font-weight: 600;
    color: #132245;
  }
  
  .subtitle {
    margin: 1rem 0;
    font-size: 2rem;
    font-weight: 500;
    color: #132245;
  }
  
  .description {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #132245;
  }
  
  .program-intro h1 {
    font-size: 4.5rem;
    text-align: center;
  }
  
  .program-intro h2 {
    font-size: 2.2rem;
    text-align: center;
  }
  
  .program-intro p {
    padding: 0 2rem;
    font-size: 2rem;
    text-align: left;
  }
  
  */
  
  /* 5. Mobile Media Queries */
  @media (max-width: 768px) {
    .container {
      padding: 0 20px;
      flex-direction: column;
      align-items: center;
    }
  
    .text-side, .image-side {
      width: 100%;
      text-align: center;
      padding: 2rem;
    }
  
    .title {
      font-size: 3rem;
      text-align: center;
    }
  
    .subtitle {
      font-size: 1.8rem;
      text-align: center;
    }
  
    .description {
      font-size: 1.5rem;
      text-align: center;
    }
  
    nav {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
  
    nav a {
      margin: 1rem 0;
    }
  
    header {
      flex-direction: column;
      align-items: flex-start;
      padding: 1rem 5%;
    }
  
    .dropdown-content {
      position: static;
      box-shadow: none;
    }
  
    .program-intro {
      padding: 30px 20px;
    }
  
    .floating-button {
      right: 10px;
      bottom: 10px;
      padding: 8px 16px;
      font-size: 1.4rem;
    }
  }


  .program-container {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  }

  .program-intro {
    background-color: #FEDE42;
    color: #132245;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
  }

  .program-intro h1 {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .program-intro h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .program-intro p {
    font-size: 18px;
    line-height: 1.6;
  }

  .program-benefits {
    background-color: #FFFFF0;
    color: #132245;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
  }

  .program-benefits h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .program-benefits ul {
    list-style-type: none;
    padding: 0;
  }

  .program-benefits li {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .program-benefits strong {
    font-weight: bold;
  }

  .cta {
    text-align: center;
    padding: 40px;
    background-color: #FEDE42;
    color: #132245;
    border-radius: 10px;
  }

  .cta h3 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .cta p {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .cta-button {
    display: inline-block;
    font-size: 18px;
    background-color: #132245;
    color: #FEDE42;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }

  .cta-button:hover {
    background-color: #1a3b5d;
  }

  /* 1. Responsive container for team sections */
  .container {
    display: flex;
    flex-wrap: wrap; /* allow wrapping on smaller screens */
    width: 100%;
    margin-bottom: 100px;
    padding: 0 50px;
  }
  
  .image-side {
    flex: 1 1 40%;
    background-color: #FFFFF0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .image-side img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
  }
  
  .text-side {
    flex: 1 1 60%;
    padding: 2rem;
    background-color: #FFFFF0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  /* 2. Responsive typography */
  .title {
    margin: 0;
    font-size: 4rem;
    font-weight: 600;
    color: #132245;
  }
  
  .subtitle {
    margin: 1rem 0;
    font-size: 2rem;
    font-weight: 500;
    color: #132245;
  }
  
  .description {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #132245;
  }
  



  .testimonial {
    background-color: #FFFFF0;
    padding: 40px 20px;
    border-radius: 10px;
    margin-bottom: 40px;
  }

  .testimonial-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
  }

  .testimonial-image {
    flex: 1 1 200px;
    max-width: 200px;
  }

  .testimonial-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
  }

  .testimonial-content {
    flex: 2 1 500px;
  }

  .testimonial-name {
    font-size: 2.4rem;
    font-weight: 600;
    color: #132245;
    margin-bottom: 0.5rem;
  }

  .testimonial-title {
    font-size: 1.6rem;
    color: #555;
    margin-bottom: 1.5rem;
  }

  .testimonial-quote {
    font-size: 1.8rem;
    font-style: italic;
    font-weight: bold;
    line-height: 1.6;
    color: #132245;
    quotes: "“" "”" "‘" "’";
  }

  .testimonial-quote::before {
    content: open-quote;
  }

  .testimonial-quote::after {
    content: close-quote;
  }

  @media (max-width: 768px) {
    .testimonial-container {
      flex-direction: column;
      text-align: center;
    }

    .testimonial-image, .testimonial-content {
      max-width: 100%;
    }
  }