/* 
 Theme Name:   medicare-child
 Theme URI:    
 Description:  
 Author:       
 Author URI:   
 Template:     medicare-clinic
 Version:      1.0

 /* == Add your own styles below this line ==
--------------------------------------------*/

:root {
    --primary-color: #4dc9fe;
    --secondary-color: #6985c0;
}

.main-navigation a {
    padding: 10px 16px;
}

.main-navigation ul .current_page_item a,
.main-navigation ul .current_page_item a {
    color: var(--secondary-color);
}

.toggle-nav button {
    background: var(--primary-color);
}

@media screen and (max-width: 1000px) {
    .main-navigation ul {
        background: var(--primary-color);
    }

    .sidenav {
        background: var(--secondary-color);
    }
}

.box-image-page {
    background-image: radial-gradient(circle at 62% 39%, rgba(30, 30, 30, 0.05) 0%, rgba(30, 30, 30, 0.05) 8%, transparent 8%, transparent 16%, transparent 16%, transparent 28%, transparent 28%, transparent 100%), radial-gradient(circle at 19% 61%, rgba(201, 201, 201, 0.01) 0%, rgba(201, 201, 201, 0.01) 59%, transparent 59%, transparent 60%, transparent 60%, transparent 99%, transparent 99%, transparent 100%), radial-gradient(circle at 15% 5%, rgba(186, 186, 186, 0.05) 0%, rgba(186, 186, 186, 0.05) 9%, transparent 9%, transparent 79%, transparent 79%, transparent 92%, transparent 92%, transparent 100%), radial-gradient(circle at 64% 49%, rgba(51, 51, 51, 0.08) 0%, rgba(51, 51, 51, 0.08) 22%, transparent 22%, transparent 50%, transparent 50%, transparent 96%, transparent 96%, transparent 100%), radial-gradient(circle at 53% 21%, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.04) 21%, transparent 21%, transparent 80%, transparent 80%, transparent 89%, transparent 89%, transparent 100%), radial-gradient(circle at 14% 91%, rgba(49, 49, 49, 0.04) 0%, rgba(49, 49, 49, 0.04) 35%, transparent 35%, transparent 63%, transparent 63%, transparent 71%, transparent 71%, transparent 100%), radial-gradient(circle at 42% 78%, rgba(64, 64, 64, 0.02) 0%, rgba(64, 64, 64, 0.02) 56%, transparent 56%, transparent 75%, transparent 75%, transparent 80%, transparent 80%, transparent 100%), radial-gradient(circle at 76% 85%, rgba(69, 69, 69, 0.06) 0%, rgba(69, 69, 69, 0.06) 53%, transparent 53%, transparent 68%, transparent 68%, transparent 97%, transparent 97%, transparent 100%), linear-gradient(90deg, rgb(77, 201, 254), rgb(105, 133, 192));
}

.box-text {
    transform: translateY(0);
    right: 0;
    left: 0;
}

.box-text h1 {
    color: #fff;
    font-style: italic;
}

.external-div,
.single-page-img {
    background-image: none !important;
    height: 280px !important;
}

#primary {
    padding: 25px 0;
}

section {
    padding: 40px 0;
}

section h2 {
    text-align: center;
    color: var(--primary-color);
    letter-spacing: 0.1em;
    font-weight: 800;
    text-shadow:
        0 1px 0 var(--secondary-color),
        0 2px 0 var(--secondary-color);

    font-style: italic;
}

h3 {
    margin: 1rem 0;
    padding-left: 0.7rem;
    color: var(--secondary-color);
    font-weight: 600;
    border-left: 5px solid var(--primary-color);
}

section img {
    outline: 3px solid var(--primary-color);
    border-radius: 30px;
}

.box {
    position: relative;
    padding: 1rem;
    border-radius: 18px;
    background: linear-gradient(135deg,
            var(--primary-color),
            var(--secondary-color),
            #ffcc4d,
            #ff6b6b);
    background-size: 300% 300%;
    color: #fff;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.25),
        inset 0 0 0 2px rgba(255, 255, 255, 0.25);
    overflow: hidden;
    animation: bingoGradient 8s ease infinite;
    height: 100%;
}

/* Floating bingo ball effect */
.box::before,
.box::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.35;
    filter: blur(1px);
    animation: bingoFloat 10s ease-in-out infinite;
}

.box::before {
    width: 140px;
    height: 140px;
    background: #ffffff;
    top: -40px;
    left: -40px;
}

.box::after {
    width: 100px;
    height: 100px;
    background: #ffeb99;
    bottom: -30px;
    right: -30px;
    animation-delay: 2s;
}

/* Inner content glow */
.box>* {
    position: relative;
    z-index: 1;
}

.box h3 {
    color: #ffffff;
    border-left: 0;
    padding-left: 0;
    text-align: center;
}

.box a {
    color: #000000 !important;
}

/* Keyframes */
@keyframes bingoGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes bingoFloat {
    0% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-20px) translateX(15px);
    }

    100% {
        transform: translateY(0) translateX(0);
    }
}

/* Subtle pulse for excitement */
@keyframes bingoPulse {

    0%,
    100% {
        box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.25),
            inset 0 0 0 2px rgba(255, 255, 255, 0.25);
    }

    50% {
        box-shadow:
            0 14px 40px rgba(0, 0, 0, 0.35),
            inset 0 0 0 2px rgba(255, 255, 255, 0.4);
    }
}

.box {
    animation:
        bingoGradient 4s ease-in-out infinite,
        bingoPulse 4s ease-in-out infinite;
}


.faq h3 {
    margin: 0;
    padding: 0.5rem 1rem;
    cursor: pointer;
    background: var(--primary-color);
    color: #fff;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.faq p {
    margin: 0;
    padding: 1.5rem 1rem;
    max-height: 0;
    overflow: hidden;
    background: #f7f9fc;
    transition: max-height 0.4s ease, padding 0.3s ease;
    border-radius: 0 0 6px 6px;
}


.error-404 {
    padding: 0;
}

.btn-home {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg,
            var(--primary-color),
            var(--secondary-color));
    border-radius: 999px;
    transition:
        background 0.25s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(77, 201, 254, 0.35);
}

.btn-home:hover,
.btn-home:focus {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(105, 133, 192, 0.45);
    outline: none;
}

#tp_content {
    background-image: linear-gradient(67.5deg, rgb(215, 215, 215) 0%, rgb(215, 215, 215) 46%, rgb(198, 198, 198) 46%, rgb(198, 198, 198) 49%, rgb(181, 181, 181) 49%, rgb(181, 181, 181) 56%, rgb(164, 164, 164) 56%, rgb(164, 164, 164) 61%, rgb(146, 146, 146) 61%, rgb(146, 146, 146) 75%, rgb(77, 201, 254) 75%, rgb(77, 201, 254) 84%, rgb(105, 133, 192) 84%, rgb(105, 133, 192) 100%), linear-gradient(22.5deg, rgb(215, 215, 215) 0%, rgb(215, 215, 215) 46%, rgb(198, 198, 198) 46%, rgb(198, 198, 198) 49%, rgb(181, 181, 181) 49%, rgb(181, 181, 181) 56%, rgb(164, 164, 164) 56%, rgb(164, 164, 164) 61%, rgb(146, 146, 146) 61%, rgb(146, 146, 146) 75%, rgb(77, 201, 254) 75%, rgb(77, 201, 254) 84%, rgb(105, 133, 192) 84%, rgb(105, 133, 192) 100%), linear-gradient(112.5deg, rgb(215, 215, 215) 0%, rgb(215, 215, 215) 46%, rgb(198, 198, 198) 46%, rgb(198, 198, 198) 49%, rgb(181, 181, 181) 49%, rgb(181, 181, 181) 56%, rgb(164, 164, 164) 56%, rgb(164, 164, 164) 61%, rgb(146, 146, 146) 61%, rgb(146, 146, 146) 75%, rgb(77, 201, 254) 75%, rgb(77, 201, 254) 84%, rgb(105, 133, 192) 84%, rgb(105, 133, 192) 100%), linear-gradient(90deg, rgb(231, 231, 231), rgb(195, 195, 195));
    background-blend-mode: overlay, overlay, overlay, normal;
}