body {
            font-family: 'Poppins', sans-serif;  /* Use Poppins font for the entire page */
            background-color: var(--theme-body-bg, #f4f4f4);
       }
       .row {
            display: flex;  /* Enable flexbox for the row */
            flex-wrap: wrap; /* Allow wrapping to the next row on smaller screens */
            }

        .col-md-4 {
            display: flex; /* Enable flexbox for the column */
            flex-direction: column; /* Align items vertically within the column */
            }

        .box {
            border: none; 
            padding: 30px; /* Increased padding */
            margin-bottom: 30px; /* Increased margin */
            text-align: center;
            cursor: pointer;
            background-color: var(--theme-card-bg, white);
            border-radius: 15px; /* More rounded corners */
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15); /* More pronounced shadow */
            transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smoother transition */
            overflow: hidden; /* For image containment on hover */
            flex-grow: 1;  /* Allow boxes to expand to fill available space */
        }

        .box:hover {
            transform: translateY(-8px); /* More lift on hover */
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Darker shadow on hover */
        }

        .box a {
            display: flex; /* Enable flexbox for the link */
            flex-direction: column; /* Vertical alignment of link content */
            height: 100%; /* Make the link fill the entire box height */
            align-items: center; /* Center content horizontally */
            justify-content: center; /* Center content vertically */
            text-decoration: none; /* Removes underlines */
            color: var(--theme-card-text, #333);
        }

        .box a:hover {  /* Specifically target your challenge box links */

            text-decoration: none; /* Make sure underline is removed on hover too */
            color: var(--theme-card-hover, #007bff);
            }


        .box img {
            max-width: 100%;
            height: 200px; /* Fixed height for consistent box sizes */
            object-fit: cover; /* Maintain aspect ratio and cover the area */
            display: block;
            margin: 0 auto;
            border-radius: 10px;
            transition: transform 0.3s ease; /* Add a transition for image hover effect */
            max-height: 200px; /* Use max-height to limit image size if needed */

        }


        .box:hover img {
            transform: scale(1.1);  /* Zoom image slightly on hover */
        }



        .box h3 { 
            margin-top: 20px;
            font-weight: 600;  /* Slightly bolder heading font-weight */
            color: var(--theme-card-text, #333);
            transition: color 0.3s ease;   /*  Transition for heading color */

        }

        .box:hover h3 {
            color: var(--theme-card-hover, #007bff);
        }

        .navbar {
            background-color: var(--theme-navbar-bg, #00F4FF) !important;
        }
        .navbar .nav-link,
        .navbar .navbar-brand,
        .navbar .dropdown-toggle {
            color: var(--theme-navbar-text, #000000) !important;
        }
        .navbar .nav-link:hover,
        .navbar .nav-link:focus {
            color: var(--theme-navbar-text, #000000) !important;
            opacity: 0.8;
        }
        .navbar .navbar-toggler-icon {
            filter: var(--theme-toggler-filter, none);
        }
        .dropdown-menu {
            background-color: var(--theme-dropdown-bg, #ffffff);
        }
        .dropdown-menu .dropdown-item {
            color: var(--theme-dropdown-text, #333333);
        }
        .dropdown-menu .dropdown-item:hover,
        .dropdown-menu .dropdown-item:focus {
            background-color: var(--theme-primary, #007bff);
            color: var(--theme-cust-btn-text, #ffffff);
        }

        h1 {
            font-weight: 700; /* Even bolder main heading */
            margin-bottom: 40px;  /* Increase margin below heading */
        }
        .seo-content {
            padding: 20px; /* Add padding around the SEO content */
            margin-bottom: 40px; /* Add margin below SEO content */
        }

        .seo-content h2 {
            margin-top: 30px; /* Add margin above h2 headings */
        }

        .seo-content p {
            line-height: 1.6; /* Improve readability */
            margin-bottom: 15px; /* Add space between paragraphs */
        }

        .seo-section { /* Style for individual challenge descriptions */
            margin-bottom: 25px;
            padding: 15px;
            border: 1px solid #ddd; /* Light border */
            border-radius: 8px;    /* Slightly rounded corners */
        }

        .seo-section h2 {
            margin-top: 0; /* Remove extra margin from section headings */
        }

        footer {
            background-color: var(--theme-footer-bg, #E1E1E1);
            color: var(--theme-footer-text, #475579);
        }



        .calculator-container {
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
            padding: 30px;
            margin-top: 50px;  /* Space above the calculator */

        }

        .result {
            font-size: 2em;
            font-weight: bold;
            margin-top: 20px;
            color: var(--theme-primary, #007bff);
        }

        /* Styles for the progress circle (using a library or custom CSS) */
        .circle {
            width: 150px;
            height: 150px;
            margin: 40px auto; /* Center the circle */

        }
        #result-message {
            margin-top: 20px;
            text-align: center;
        }
        canvas#myCircle {
            margin: 20px auto;
            display: block;

        }

        /* Promo Box — homepage layout override */
        .promo-box-wrapper {
            margin: 32px auto 0;
            max-width: 620px;
        }
        .promo-box-card {
            border-radius: 16px;
            padding: 18px;
            box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
            text-align: center;
        }
        .promo-box-title {
            font-weight: 700;
            letter-spacing: 0.5px;
            margin: 0 0 6px;
        }
        .promo-box-subtitle { margin: 0 0 14px; }
        .promo-box-media {
            position: relative;
            max-width: 520px;
            margin: 0 auto 12px;
            border-radius: 12px;
            overflow: hidden;
            display: block;
            aspect-ratio: 16 / 9;
        }
        .promo-box-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .promo-box-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            border-radius: 999px;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 0 10px 24px rgba(0,0,0,.25);
            transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
            margin-top: 10px;
        }
        .promo-box-cta:hover { transform: translateY(-2px); opacity: 0.95; text-decoration: none; }
        .promo-box-cta span { font-size: 14px; }