body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

h1 {
    text-align: center;
}

.header {
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    position: relative;
}

.left-container {
    position: relative;
    display: flex;
    align-items: center;
    vertical-align: middle;
}

.title-container {
    padding-bottom: 0.9%;
    z-index: 1;
    flex-grow: 1;
    text-align: center;
    font-size: max(3vw, 3vh);
    color: #333;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.bubble-store {
    position: absolute;
    border-radius: 0% 50% 100% 0%;
    background-image: linear-gradient(to right, #3586ff, #8ab9fe);
    height: 50px;
    width: 50px;
}

.bubble {
    position: absolute;
    background-color: #8ab9fe;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    animation: move 10s ease-in-out infinite;
}

.bubble:nth-child(1) {
    top: -25px;
    animation-delay: -2s;
}

.bubble:nth-child(2) {
    top: -15px;
    animation-delay: -3.5s;
}

.bubble:nth-child(3) {
    top: 5px;
    animation-delay: -5s
}

.bubble:nth-child(4) {
    top: 10px;
    animation-delay: -1s;
}

.bubble:nth-child(5) {
    top: 0px;
    animation-delay: -5.8s
}

.bubble:nth-child(6) {
    top: 7px;
    animation-delay: 0s;
}


@keyframes move {
    100% {
        opacity: 0;
        transform: translateX(50vw) scale(0);
    }
}

.wrapper {
    overflow: hidden;
    max-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image {
    width: 100%;
    position: relative;
}

img {
    width: 100%;
    margin: auto;
}

.content {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    opacity: 0;
    transition: 0.6s;
}

.content:hover,
content:focus {
    opacity: 1;
}

.content>* {
    transform: translateY(25px);
    transition: transform 0.6s;
}

.content:hover>*,
content:focus>* {
    transform: translateY(0px)
}

.content h1 {
    padding: 0px 5px 0px 5px;
    font-size: max(3vw, 3vh);
    line-height: 36.12px;
    font-weight: 600;
}

.content p {
    font-size: max(1vw, 1.7vh);
    font-weight: bold;
    background-color: #DE3C4b;
    padding: 15px 25px 15px 25px;
    border-radius: 10% 10% 10% 10% / 100% 100% 100% 100%;
}

.holder {
    margin: 10px 0px 50px 0px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.flip-card-container {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.flip-card {
    margin: 20px 0px 20px 0px;
    background-color: transparent;
    width: 200px;
    height: 200px;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card-front,
.flip-card-back {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 10%;
}

.flip-card:hover .flip-card-inner,
.flip-card:focus .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front {
    z-index: 2;
}

.flip-card-back {
    transform: rotateY(180deg);
    justify-content: center;
    font-size: 16px;
    color: white;
}

.back {
    margin-top: 10px;
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 1;

}

@media (max-width:  768px ) {
    .back {
        animation: pulse 2s linear infinite;
    }
    .content {
        opacity: 1;
    }
    .content>* {
        transform: translateY(0px);
    }
    .content:hover>* {
        opacity: 1;
    }
}

@keyframes pulse {
    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

.flip-card-front img {
    width: 50px;
    height: 50px;
    z-index: 2;
    margin-top: 35px;
}

.flip-card-front p {
    margin-top: 80px;
    font-size: 16px;
    font-weight: bold;
    color: white;
}

.about-us {
    position: relative;
    width: 60%;
    max-width: 800px;
    padding: 40px;
    background: linear-gradient(135deg, #DE3C4b, #d96b76);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    text-align: center;
    margin: 40px 0px 0px 0px;
}

.about-us h2 {
    margin-top: 0;
    font-size: 32px;
    color: white;
}

.about-us p {
    margin: 20px 0 0;
    font-size: min(18px, 4vw);
    color: white;
    line-height: 1.6;
}

.info {
    width: 100%;
    height: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.panel {
    position: relative;
    width: 60vw;
    max-width: 300px;
    height: min(60vw, 25%);
    background-color: #4b0082;
    border-radius: 25px;
    display: flex;
    flex-flow: column;
    align-items: center;
    text-align: center;
    border: 10px solid;
}

.panel:nth-child(1) {
    left: 15%;
    background-color: #5386E4;
    border-color: #A4BDEC
}

.panel:nth-child(2) {
    right: 15%;
    background-color: #f58f29;
    border-color: #F5C28F;
}

.panel:nth-child(3) {
    left: 15%;
    background-color: #61C9A8;
    border-color: #ABDFCE;
}

.panel img {
    margin: 0 0 10px 0;
    width: 100px;
    height: 100px;
}

.panel p, .panel a {
    padding: 5px;
    margin: 5px 0 0;
    font-size: min(18px, 4vw);
    color: white;
    line-height: 1.6;
    text-decoration: none;
}

.emphasis {
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 5px;
    margin: 15px 5px 0px 5px;
}




.wave-container {
    position: relative;
    width: 100%;
    height: 15vh;
    background: #3586ff;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: url(Images/wave.png);
    background-size: 1000px 100px;
}

.wave1 {
    animation: slide 30s linear infinite;
    z-index: 5;
    opacity: 1;
    animation-delay: 0s;
    bottom: 0;
}

.wave2 {
    animation: slide 15s linear infinite;
    z-index: 4;
    opacity: 0.5;
    animation-delay: -5s;
    bottom: 10px;
}

.wave3 {
    animation: slide 30s linear infinite;
    animation-direction: reverse;
    z-index: 3;
    opacity: 0.7;
    animation-delay: -2s;
    bottom: 15px;
}

.wave4 {
    animation: slide 10s linear infinite;
    z-index: 2;
    opacity: 0.5;
    animation-delay: -5s;
    bottom: 20px;
}


@keyframes slide {
    0% {
        background-position-x: 0px;
    }

    100% {
        background-position-x: 1000px;
    }
}

.pre-wave2 {
    height: 30px;
    background-color: #5e9eff;
}

.pre-wave {
    margin-top: 50px;
    height: 20px;
    background-color: #8ab9fe;
}