/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

a:hover {
    text-decoration: none !important;
}

a:visited {
    color: inherit !important;
}

a:active {
    color: inherit !important;
}
body {
    font-family: "Bai Jamjuree", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utility Classes */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-space-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-align-start {
    display: flex;
    align-items: start;
    justify-content: center;
}

/* Typography */
.content-yellow-text {
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 40px;
    font-weight: bold;
    color: #E9fe41;
}

.content-white-small-text {
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 22px;
    color: #FFFFFF;
}

.content-description-text {
    font-family: "Raleway", sans-serif;
    font-size: 22px;
}

.wave-white-header{
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.wave-blue-header{
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 35px;
    font-weight: bold;
    color: #1616B3;
}

.wave-small-text{
 font-family: "Raleway", sans-serif;
    font-size: 17px;
    color: white;
}

.wave-blue-small-text
{
     font-family: "Raleway", sans-serif;
    font-size: 17px;
    color: #1616B3;
}

.flex-column{
    flex-direction: column;
}

.flex-start{
     display: flex;
    align-items: center;
    justify-content: start;
}
 .text-start{
    text-align: start;
 }

/* Pop-out Box Animation */
.pop-out-box {
    position: relative;
    opacity: 0;
    transform: scale(0.5) translateY(50px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pop-out-box.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.pop-out-box img {
    width: 100%;
    height: auto;
    display: block;
}

.pop-out-box-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
}

.pop-out-box-text {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.4s;
}

.pop-out-box.visible .pop-out-box-text {
    opacity: 1;
    transform: translateY(0);
}

