        .crista-section {
            padding: 60px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        /* --- Logo Section --- */
        .logo-container {
            margin-bottom: 20px;
            text-align: center;
            width: 100%;
            max-width: 750px;
            z-index: 5; /* Keeps logo physically above the emerging circles */
        }

        .logo-img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* --- Semi-Circle Interactive Container --- */
        .interactive-wrapper {
            position: relative;
            width: 100%;
            max-width: 950px;
            height: 380px; 
            margin-top: 0px;
        }

        /* --- Circle Card Base Style --- */
        .circle-card {
            position: absolute;
            width: 110px;
            height: 110px;
            border-radius: 50%;
            background-color: #fff;
            border: 3px solid #008751; /* CRISTA Green */
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 15px;
            cursor: pointer;
            text-align: center;
            overflow: hidden;
            
            /* Smooth spring-like transition for user hover actions */
            transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.2), 
                        height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.2), 
                        border-radius 0.4s ease, 
                        box-shadow 0.4s ease, 
                        background-color 0.4s ease;
            
            /* Center alignment trick */
            transform: translate(-50%, -50%);
            z-index: 1;

            /* Link the fly-out animation on load */
            animation: flyOut 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
            opacity: 0; /* Hidden before animation triggers */
        }
		 .crista-section.animate-now .circle-card {
            animation: flyOut 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
        }
        /* ==========================================================================
           ANIMATION & COORDINATES
           - Starting point: Top Center (50%, 0%) right beneath the logo
           - Ending points: Set dynamically via CSS variables (--target-left, --target-top)
           ========================================================================== */
        @keyframes flyOut {
            0% {
                left: 50%;
                top: 0%;
                transform: translate(-50%, -50%) scale(0);
                opacity: 0;
            }
            30% {
                opacity: 1;
            }
            100% {
                left: var(--target-left);
                top: var(--target-top);
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
        }

        /* Assigning destination positions and cascading animation delays */
        .circle-card:nth-child(1) { --target-left: 10%; --target-top: 15%; animation-delay: 0.1s; }
        .circle-card:nth-child(2) { --target-left: 30%; --target-top: 55%; animation-delay: 0.2s; }
        .circle-card:nth-child(3) { --target-left: 50%; --target-top: 75%; animation-delay: 0.3s; } /* Apex */
        .circle-card:nth-child(4) { --target-left: 70%; --target-top: 55%; animation-delay: 0.4s; }
        .circle-card:nth-child(5) { --target-left: 90%; --target-top: 15%; animation-delay: 0.5s; }

        /* --- Icon Layout --- */
        .circle-icon {
            width: 45px;
            height: 45px;
            object-fit: contain;
            transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
        }

        /* --- Text Content (Hidden by default) --- */
        .circle-content {
            opacity: 0;
            max-height: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, max-height 0.3s ease;
        }

        .circle-content h3 {
            margin: 10px 0 4px 0;
            font-size: 1.2rem;
            color: #038130;
            text-transform: none;
            letter-spacing: 0px;
			font-weight:bold;
			line-height:1.2rem;
        }

        .circle-content p {
            margin: 0;
            font-size: 1.1rem;
            color: #000;
            line-height: 1.1rem;
        }

        /* --- HOVER EFFECTS (Desktop) --- */
        @media (min-width: 769px) {
            .circle-card:hover {
                width: 220px;
                height: 220px;
                border-radius: 24px;
                box-shadow: 0 15px 35px rgba(0, 135, 81, 0.25);
                z-index: 10;
            }

            .circle-card:hover .circle-icon {
                width: 40px;
                height: 40px;
            }

            .circle-card:hover .circle-content {
                opacity: 1;
                max-height: 140px;
                visibility: visible;
            }
        }

        /* ==========================================================================
           RESPONSIVE MEDIA QUERIES
           ========================================================================== */

        /* --- Tablets & Medium Screens --- */
        @media (max-width: 900px) and (min-width: 581px) {
            .interactive-wrapper {
                height: 300px;
            }
            .circle-card {
                width: 95px;
                height: 95px;
                padding: 10px;
            }
            /* Adjusting the animation destinations on tablet sizes */
            .circle-card:nth-child(1) { --target-left: 10%; --target-top: 15%; }
            .circle-card:nth-child(2) { --target-left: 30%; --target-top: 50%; }
            .circle-card:nth-child(3) { --target-left: 50%; --target-top: 70%; }
            .circle-card:nth-child(4) { --target-left: 70%; --target-top: 50%; }
            .circle-card:nth-child(5) { --target-left: 90%; --target-top: 15%; }

            .circle-card:hover {
                width: 190px;
                height: 190px;
            }
        }

        /* --- Mobile Devices (Phones) --- */
        @media (max-width: 580px) {
            .interactive-wrapper {
                height: auto;
                display: flex;
                flex-direction: column;
                gap: 20px;
                align-items: center;
                margin-top: 30px;
            }

            .circle-card {
                position: relative;
                left: auto !important;
                top: auto !important;
                transform: none !important;
                width: 100%;
                max-width: 320px;
                height: auto;
                border-radius: 16px;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
                text-align: left;
                padding: 15px 20px;
                
                /* On mobile, use a clean drop-down reveal animation instead of arc spreading */
                animation: mobileFadeIn 0.6s ease forwards;
            }

            @keyframes mobileFadeIn {
                0% { opacity: 0; transform: translateY(-20px); }
                100% { opacity: 1; transform: translateY(0); }
            }

            .circle-icon {
                width: 40px;
                height: 40px;
                margin-right: 15px;
                flex-shrink: 0;
            }

            .circle-content {
                opacity: 1;
                max-height: none;
                visibility: visible;
            }

            .circle-content h3 {
                margin: 0 0 2px 0;
            }
        }