/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white;
    color: #333;
    padding: 0;
    text-align: center;
    overflow-x: hidden;
}

/* Background Logo */
.background-logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('pshbtnlogo.svg') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: -1;
}

/* Home Icon */
.home-icon {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.home-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #007BFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.home-circle:hover {
    transform: scale(1.1);
}

.home-circle img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.home-circle span {
    font-family: 'Impact', sans-serif;
    color: white;
    font-size: 1.5em;
    margin-top: 5px;
    text-transform: uppercase;
}

/* Content Section */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 150px 0 50px;
    gap: 40px;
}

/* Bubble Container */
.bubble {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 85%;
    max-width: 900px;
    padding: 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.8s ease, opacity 0.8s ease;
    opacity: 0;
    transform: translateX(150%);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background-color: white;
    text-align: left;
}

/* Green and Blue Bubble Colors */
.green {
    border-left: 10px solid #4CAF50;
    background: rgba(76, 175, 80, 0.3);
}

.blue {
    border-left: 10px solid #007BFF;
    background: rgba(0, 123, 255, 0.3);
}

/* Alternating Bubble Position */
.left {
    flex-direction: row;
    transform: translateX(-150%);
}

.right {
    flex-direction: row-reverse;
    transform: translateX(150%);
}

/* Heading and Text Styles */
.bubble h2 {
    font-family: 'Impact', sans-serif;
    font-size: 2.5em;
    color: #333;
    margin: 0 20px;
    text-transform: uppercase;
    flex: 1;
}

.bubble p {
    font-family: Arial, sans-serif;
    font-size: 1.4em;
    color: #555;
    margin: 0;
    flex: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .home-circle {
        width: 100px;
        height: 100px;
    }

    .home-circle img {
        width: 50px;
        height: 50px;
    }

    .home-circle span {
        font-size: 1.2em;
    }

    .bubble {
        flex-direction: column;
        padding: 15px;
        text-align: center;
    }

    .bubble h2 {
        font-size: 2em;
        margin-bottom: 10px;
    }

    .bubble p {
        font-size: 1em;
    }
}
