/* Hamburger Menu Animation */
            .hamburger {
              display: flex;
              flex-direction: column;
              justify-content: space-between;
              width: 24px;
              height: 18px;
              cursor: pointer;
            }

            .hamburger span {
              display: block;
              width: 100%;
              height: 3px;
              background-color: var(--title-color);
              transition: all 0.3s ease;
            }

            /* Animation when menu is open */
            .show-menu .hamburger span:nth-child(1) {
              transform: translateY(7px) rotate(45deg);
            }

            .show-menu .hamburger span:nth-child(2) {
              opacity: 0;
            }

            .show-menu .hamburger span:nth-child(3) {
              transform: translateY(-7px) rotate(-45deg);
            }

        



            /* Mobile Adjustments */
            @media (max-width: 767px) {
                .qualification__sections {
                    padding: 0 0.5rem;
                }

                .qualification__data {
                    display: flex;
                    flex-direction: column;
                    position: relative;
                    padding-left: 2rem; /* Space for the vertical line */
                    margin-bottom: 2rem;
                }

                .qualification__data > div:nth-child(2) {
                    position: absolute;
                    left: 0;
                    top: 0;
                    bottom: 0;
                    width: 1px;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                }

                .qualification__rounder {
                    position: absolute;
                    top: -22px;
                }

                .qualification__line {
                    width: 1px;
                    height: 100%;
                    transform: translateX(0);
                }

                .services__content {
                    max-width: 100%; /* Full width on mobile */
                    padding: 1rem;
                }

                .qualification__title {
                    font-size: 1.1rem; /* Slightly smaller but readable */
                    white-space: normal; /* Allow wrapping on mobile */
                }

                .qualification__calendar {
                    font-size: 0.9rem;
                }

                .qualification__subtitle {
                    font-size: 0.95rem;
                }
            }



        


        .eye-counter {
            display: flex;
            align-items: center;
            margin-right: 15px;
        }

        .eye-container {
            position: relative;
            width: 80px;
            height: 50px;
            cursor: pointer;
        }

        .eye-outer {
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, 
                #f0f0f0 0%, 
                #d4d4d4 30%, 
                #8a8a8a 70%, 
                #4a4a4a 100%);
            border-radius: 60% / 60%;
            box-shadow: 
                0 0 15px rgba(0,0,0,0.3),
                inset 0 0 10px rgba(255,255,255,0.5);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        /* Blood vessel effect */
        .eye-outer::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle, transparent 60%, rgba(150,50,50,0.05) 60.5%) 50% 50%/80% 80%,
                linear-gradient(100deg, rgba(200,100,100,0.1) 0%, transparent 20%, transparent 80%, rgba(200,100,100,0.1) 100%);
            border-radius: 50%;
        }

        .dark-theme .eye-outer {
            background: radial-gradient(ellipse at center, 
                #4a4a4a 0%, 
                #2a2a2a 30%, 
                #1a1a1a 70%, 
                #0a0a0a 100%);
        }

        .eye-inner {
            position: absolute;
            width: 55%;
            height: 55%;
            background: radial-gradient(circle at center, 
                #3a1d0d 0%, 
                #1a0a00 50%, 
                #0a0000 100%);
            border-radius: 50%;
            top: 22.5%;
            left: 22.5%;
            box-shadow: 
                inset 0 0 15px rgba(0,0,0,0.4),
                0 0 5px rgba(255,255,255,0.3);
            transition: all 0.2s ease;
        }

        /* Iris pattern */
        .eye-inner::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle, transparent 65%, rgba(0,0,0,0.7) 65.5%),
                repeating-radial-gradient(circle at 30% 30%, 
                    rgba(150, 50, 200, 0.3) 0%, 
                    transparent 1%, 
                    transparent 5%);
            border-radius: 50%;
        }

        .dark-theme .eye-inner {
            background: radial-gradient(circle at center, 
                #1a0a00 0%, 
                #0a0000 50%, 
                #000 100%);
        }

        .pupil {
            position: absolute;
            width: 40%;
            height: 40%;
            background: #000;
            border-radius: 50%;
            top: 30%;
            left: 30%;
            box-shadow: 
                0 0 15px rgba(0,0,0,0.7),
                inset 0 0 10px rgba(100, 0, 150, 0.5);
            transition: all 0.1s ease;
        }

        /* Eye shine */
        .pupil::after {
            content: '';
            position: absolute;
            width: 20%;
            height: 20%;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            top: 20%;
            left: 20%;
            filter: blur(0.5px);
        }

        .counter-number {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Arial', sans-serif;
            font-weight: bold;
            font-size: 1rem;
            color: white;
            text-shadow: 0 0 5px rgba(0,0,0,0.9);
            z-index: 10;
            pointer-events: none;
        }

        /* Original Smooth Blink Animation */
        @keyframes eye-blink {
            0%, 100% { 
                transform: scaleY(1);
                border-radius: 60% / 60%;
            }
            20%, 80% {
                border-radius: 60% / 10%;
            }
            50% { 
                transform: scaleY(0.05);
                border-radius: 60% / 5%;
            }
        }

        .eye-container.active .eye-outer {
            animation: eye-blink 0.4s ease-in-out;
        }

        /* Follow cursor effect */
        .eye-container:hover .eye-inner {
            transform: translate(
                calc(var(--mouse-x) * 15px - 7.5px), 
                calc(var(--mouse-y) * 10px - 5px)
            );
        }

        .eye-container:hover .pupil {
            transform: translate(
                calc(var(--mouse-x) * 10px - 5px), 
                calc(var(--mouse-y) * 7px - 3.5px)
            );
        }

        /* Random eye movement when not hovering */
        @keyframes random-eye-movement {
            0% { transform: translate(0, 0); }
            25% { transform: translate(2px, 1px); }
            50% { transform: translate(-1px, 2px); }
            75% { transform: translate(1px, -1px); }
            100% { transform: translate(0, 0); }
        }

        .eye-inner.idle-movement {
            animation: random-eye-movement 8s infinite ease-in-out;
        }

        .pupil.idle-movement {
            animation: random-eye-movement 5s infinite ease-in-out;
        }

        /* Micro-movements when idle */
        @keyframes eye-idle {
            0%, 100% { transform: translate(0, 0); }
            25% { transform: translate(1px, 0.5px); }
            50% { transform: translate(0, 1px); }
            75% { transform: translate(-0.5px, 0.5px); }
        }

        .eye-outer {
            animation: eye-idle 8s infinite ease-in-out;
        }

        /* Responsive Design */
        @media (max-width: 767px) {
            .eye-container {
                width: 70px;
                height: 45px;
            }
            
            .counter-number {
                font-size: 0.9rem;
            }
        }
