@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: 60px;
    max-width: 100%;
    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;
  } 




    .random-image-gallery {
        position: relative;
        width: 100%;
        height: 80vh;
        margin: 5rem 0;
        background-color: #FFFFF0;
        overflow: hidden;
        margin-top: -100px;
    }
    

    .random-image-gallery a {
        position: absolute;
        display: block;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        z-index: 10;
    }

    .random-image-gallery a:hover {
        transform: scale(1.05) rotate(0deg); /* slightly bigger and straighten a bit */
        z-index: 20; /* bring to front */
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    }

    .random-image-gallery img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 10px;
        max-height: 190px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        object-fit: contain;
    }

    /* Randomize position, size and z-index */
    .random-image-gallery a:nth-child(1) {
        top: 10%;
        left: 5%;
        width: 400px;
        transform: rotate(-5deg);
        background-color: white;
    }

    .random-image-gallery a:nth-child(2) {
        top: 10%;
        left: 40%;
        width: 350px;
        transform: rotate(8deg);
        z-index: 5;
        background-color: white;
    }

    .random-image-gallery a:nth-child(3) {
        top: 42%;
        left: 26%;
        width: 300px;
        transform: rotate(-10deg);
        background-color: white;
    }

    .random-image-gallery a:nth-child(4) {
        top: 10%;
        left: 73%;
        width: 320px;
        transform: rotate(5deg);
        background-color: white;
    }

    .random-image-gallery a:nth-child(5) {
        top: 46%;
        left: 60%;
        width: 280px;
        transform: rotate(-7deg);
        background-color: white;
    }
    
    .random-image-gallery a:nth-child(6) {
        top: 70%;
        left: 80%;
        width: 280px;
        transform: rotate(4deg);
        background-color: white;
    }
    
    .random-image-gallery a:nth-child(7) {
        top: 65%;
        left: 5%;
        width: 330px;
        transform: rotate(6deg);
        background-color: white;
    }
    
    .random-image-gallery a:nth-child(8) {
        top: 70%;
        left: 40%;
        width: 310px;
        transform: rotate(-3deg);
        background-color: white;
    }
