* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}


.t1 {
    color: Black;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 50px;
}

/* --- WORKOUT SPINNING WHEEL THEME --- */
.wheel-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
    margin: auto;
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.pointer {
    position: absolute;
    top: 0% !important;
    left: 175px;
    transform: translateY(-50%) rotate(270deg);
    width: 40px;
    height: 30px;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    background-color: #2193b0;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
    z-index: 20;
}

#spin-btn {
    background-color: #333333;
    color: white;
}

#spin-btn:hover {
    background-color: #5c5c5c;
    color: white;
}

#resetBtn {
    background-color: #333333;
    color: white;
}

#resetBtn:hover {
    background-color: #5c5c5c;
    color: white;
}

.history-table {
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin-top: 1.5rem;
}

.table-dark th {
    background: #212529 !important;
    color: #fff !important;
    font-weight: 700;
}

#final-value {
    font-size: 1.5em;
    text-align: center;
    margin-top: 25px;
    color: #202020;
    font-weight: 500;
}

.confetti {
    position: fixed;
    width: 15px;
    height: 15px;
    opacity: 0.8;
    animation: fall 4s linear forwards;
    z-index: 1000;
}

@media (max-width: 991px) {
    .pointer {
        left: 127px;
    }

    .wheel-container {
        margin-top: 40px;
    }
}

@media screen and (max-width: 768px) {
    .wheel-container {
        width: 280px;
        height: 280px;
    }

    .pointer {
        width: 30px;
        height: 25px;
    }
}

.modal-body {
    background-color: #f8f9fa;
}

#resultFruitName {
    animation: pulse 1.5s infinite;
    color: #2193b0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.modal-header {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
}


.btn1 {
    background-color: #333333;
    color: white;
    padding: 8px;
    font-weight: bold;
}

.btn1:hover {
    background-color: #5c5c5c;
    color: white;
}

/* --- CLEAN, MINIMAL, PROFESSIONAL HEADER/NAVBAR STYLE --- */
.header {
    background: linear-gradient(90deg, #4f8cff 0%, #7f6fff 60%, #ff6ec4 100%) !important;
    box-shadow: 0 4px 24px rgba(80, 80, 180, 0.10);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-radius: 0 0 32px 32px;
    padding: 0;
}

.navbar-custom {
    background: transparent;
    padding: 1.2rem 0;
    border-radius: 0 0 32px 32px;
    box-shadow: none;
}

.logo {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff !important;
    letter-spacing: 3px;
    text-shadow: 0 4px 16px rgba(80, 80, 180, 0.18);
    text-transform: uppercase;
    transition: color 0.3s, text-shadow 0.3s, transform 0.2s;
    padding-right: 18px;
}

.logo:hover {
    color: #ffe082 !important;
    text-shadow: 0 6px 24px rgba(255, 224, 130, 0.25);
    transform: scale(1.06);
}

.navbar-nav {
    gap: 8px;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 600;
    font-size: 1.13rem;
    padding: 10px 22px;
    margin: 0 2px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 8px rgba(80, 80, 180, 0.08);
    border: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ffe082 !important;
    background: linear-gradient(90deg, #7f6fff 0%, #ff6ec4 100%);
    box-shadow: 0 4px 16px rgba(255, 110, 196, 0.13);
    transform: translateY(-2px) scale(1.04);
}

.btn-trial {
    background: linear-gradient(90deg, #ff6ec4 0%, #7878ff 100%);
    color: #fff !important;
    border-radius: 28px;
    padding: 12px 38px;
    font-weight: 800;
    font-size: 1.1rem;
    border: none;
    margin-left: 22px;
    box-shadow: 0 4px 24px rgba(255, 110, 196, 0.18);
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    letter-spacing: 1px;
}

.btn-trial:hover {
    background: linear-gradient(90deg, #7878ff 0%, #ff6ec4 100%);
    color: #fff !important;
    box-shadow: 0 8px 32px rgba(120, 120, 255, 0.22);
    transform: scale(1.06);
}

.btn-trial a {
    color: #fff !important;
    text-decoration: none;
}

.dropdown-toggle {
    color: #fff !important;
    font-weight: 700;
    background: transparent;
    border: none;
    font-size: 1.13rem;
    padding: 10px 18px;
    border-radius: 16px;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
}

.dropdown-toggle:after {
    color: #fff !important;
}

.dropdown-menu {
    background: #fff;
    border: 1.5px solid #e0e0e0;
    box-shadow: 0 8px 32px rgba(80, 80, 180, 0.10);
    border-radius: 14px;
    padding: 8px 0;
}

.dropdown-item {
    color: #7f6fff;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 10px;
    transition: background 0.18s, color 0.18s;
}

.dropdown-item:hover {
    background: #f3e8ff;
    color: #ff6ec4;
}

#selectedFlag {
    margin-right: 8px;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(80, 80, 180, 0.13);
}

@media (max-width: 991px) {
    .navbar-nav .nav-link {
        padding: 10px 12px;
        font-size: 1rem;
    }

    .btn-trial {
        padding: 10px 18px;
        font-size: 1rem;
        margin-left: 8px;
    }

    .logo {
        font-size: 1.5rem;
    }
}

@media (max-width: 575px) {

    .header,
    .navbar-custom {
        border-radius: 0 0 18px 18px;
    }

    .logo {
        font-size: 1.1rem;
    }
}

.t2 {
    font-size: 40px;
    font-weight: 700;
    color: black;
}

.accordion-button {
    color: white !important;
}

.accordion-button::after {
    content: none;
}

.accordion-button::before {
    content: '\002B';
    font-size: 1.2rem;
    position: absolute;
    right: 20px;
    font-size: 25px;
    color: white !important;
}

.accordion-button:not(.collapsed)::before {
    content: '\2212';
    color: white !important;
}

.accordion-button {
    color: white !important;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d) !important;
    margin: 15px 0px;
    padding: 25px 15px;
    border-radius: 0px !important;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2) !important;
}

.accordion-item {
    background: transparent !important;
    border: none !important;
}

.accordion-button:focus {
    z-index: 0;
    outline: 0;
    box-shadow: none;
}

.accordion-body ul li a {
    color: black;
    text-decoration: none;
}

.accordion-body ul li a:hover {
    text-decoration: underline;
}


.t3 {
    font-size: 80px;
    font-weight: 700;
}

.img1 {
    width: 400px;
    float: right;
}


/* --- PREMIUM MODERN FOOTER STYLE (FORCE OVERRIDE) --- */
.footer-gradient {
    background: linear-gradient(90deg, #4f8cff 0%, #7f6fff 60%, #ff6ec4 100%) !important;
    color: #fff !important;
    border-radius: 32px 32px 0 0 !important;
    box-shadow: 0 -4px 24px rgba(80, 80, 180, 0.10) !important;
    padding-top: 3rem !important;
    padding-bottom: 2.5rem !important;
    margin-top: 4rem !important;
}

.footer-gradient .footer-widget h2,
.footer-gradient .footer-widget h5 {
    color: #ffe082 !important;
    font-weight: 900 !important;
    letter-spacing: 1px !important;
    margin-bottom: 1.2rem !important;
}

.footer-gradient .footer-widget h5::after {
    background: #ffe082 !important;
}

.footer-gradient .footer-links a {
    color: #fff !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    padding: 4px 10px !important;
    transition: background 0.18s, color 0.18s !important;
    text-decoration: none !important;
}

.footer-gradient .footer-links a:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffe082 !important;
    transform: translateX(6px) !important;
}

.footer-gradient .social-links {
    gap: 18px !important;
    display: flex;
    text-decoration: none !important;
}

.footer-gradient .social-link {
    background: rgba(255, 255, 255, 0.13) !important;
    color: #fff !important;
    border-radius: 50% !important;
    width: 44px !important;
    height: 44px !important;
    font-size: 1.3rem !important;
    box-shadow: 0 2px 8px rgba(80, 80, 180, 0.10) !important;
    transition: background 0.18s, color 0.18s, transform 0.15s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
}

.footer-gradient .social-link:hover {
    background: #ffe082 !important;
    color: #7f6fff !important;
    transform: scale(1.12) translateY(-2px) !important;
}

.footer-gradient .newsletter-box {
    background: rgba(255, 255, 255, 0.10) !important;
    border-radius: 18px !important;
    box-shadow: 0 2px 12px rgba(80, 80, 180, 0.10) !important;
    padding: 2rem 1rem !important;
    margin-top: 2rem !important;
}

.footer-gradient .newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.18) !important;
    border: none !important;
    color: #fff !important;
    padding: 14px 22px !important;
    border-radius: 8px 0 0 8px !important;
}

.footer-gradient .newsletter-form .form-control::placeholder {
    color: #fff !important;
    opacity: 0.8 !important;
}

.footer-gradient .newsletter-form .btn {
    padding: 14px 32px !important;
    background: linear-gradient(90deg, #ff6ec4 0%, #7878ff 100%) !important;
    border: none !important;
    font-weight: 700 !important;
    color: #fff !important;
    border-radius: 0 8px 8px 0 !important;
    transition: background 0.18s, box-shadow 0.18s !important;
    box-shadow: 0 2px 8px rgba(255, 110, 196, 0.10) !important;
}

.footer-gradient .newsletter-form .btn:hover {
    background: linear-gradient(90deg, #7878ff 0%, #ff6ec4 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(120, 120, 255, 0.13) !important;
}

.footer-gradient .copyright h5 {
    color: #fff !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    margin-top: 2rem !important;
}

.footer-gradient .footer-widget,
.footer-gradient .newsletter-box {
    margin-bottom: 2rem !important;
}

@media (max-width: 991px) {
    .footer-gradient {
        border-radius: 18px 18px 0 0 !important;
        padding-top: 2rem !important;
        padding-bottom: 1.5rem !important;
    }

    .footer-gradient .footer-widget h2 {
        font-size: 1.5rem !important;
    }

    .footer-gradient .footer-widget h5 {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 575px) {
    .footer-gradient {
        border-radius: 10px 10px 0 0 !important;
        padding-top: 1.2rem !important;
        padding-bottom: 1rem !important;
    }

    .footer-gradient .footer-widget h2 {
        font-size: 1.1rem !important;
    }
}


.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
}

.goog-te-banner-frame {
    display: none !important;
}

.goog-te-gadget-icon {
    display: none !important;
}

.goog-te-menu-frame {
    display: none !important;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

.goog-tooltip {
    display: none !important;
}

.goog-tooltip:hover {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}

.goog-te-combo {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .wheel-container {
        width: 280px;
        height: 280px;
    }

    .pointer {
        width: 30px;
        height: 25px;
    }

    .t1 {
        font-size: 36px;
    }

    .t2 {
        font-size: 30px;
    }

    .t3 {
        font-size: 50px;
    }
}

/* --- Workout FAQ Accordion Theme --- */
.workout-faq-accordion {
    background: linear-gradient(90deg, #4f8cff 0%, #7f6fff 60%, #ff6ec4 100%) !important;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(80, 80, 180, 0.10);
    padding: 1.5rem 0.5rem;
}

.workout-faq-item {
    background: transparent !important;
    border: none !important;
    margin-bottom: 1rem;
    border-radius: 14px;
    overflow: hidden;
}

.workout-faq-btn {
    background: linear-gradient(90deg, #7f6fff 0%, #ff6ec4 100%) !important;
    color: #ffe082 !important;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(255, 110, 196, 0.10);
    margin-bottom: 0.5rem;
    transition: background 0.2s, color 0.2s;
}

.workout-faq-btn:not(.collapsed) {
    background: linear-gradient(90deg, #ff6ec4 0%, #7f6fff 100%) !important;
    color: #fff !important;
}

.workout-faq-body {
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    font-size: 1.05rem;
    border-radius: 0 0 12px 12px;
    padding: 1.2rem 1rem;
    box-shadow: 0 2px 8px rgba(80, 80, 180, 0.08);
}

/* --- Elements FAQ Accordion Theme --- */
.element-faq-accordion {
    background: linear-gradient(90deg, #4f8cff 0%, #7f6fff 60%, #ff6ec4 100%) !important;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(80, 80, 180, 0.10);
    padding: 1.5rem 0.5rem;
}

.element-faq-item {
    background: transparent !important;
    border: none !important;
    margin-bottom: 1rem;
    border-radius: 14px;
    overflow: hidden;
}

.element-faq-btn {
    background: linear-gradient(90deg, #7f6fff 0%, #ff6ec4 100%) !important;
    color: #ffe082 !important;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(255, 110, 196, 0.10);
    margin-bottom: 0.5rem;
    transition: background 0.2s, color 0.2s;
}

.element-faq-btn:not(.collapsed) {
    background: linear-gradient(90deg, #ff6ec4 0%, #7f6fff 100%) !important;
    color: #fff !important;
}

.element-faq-body {
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    font-size: 1.05rem;
    border-radius: 0 0 12px 12px;
    padding: 1.2rem 1rem;
    box-shadow: 0 2px 8px rgba(80, 80, 180, 0.08);
}