.btn {
            display: inline-flex; /* Changed to inline-flex for better alignment */
            justify-content: center; /* Centers the icon horizontally */
            align-items: center; /* Centers the icon vertically */
            width: 4.37rem;
            height: 4.37rem;
            background: #e9e9e9;
            margin: 10px;
            /* border-radius: 50%; /* Changed to 50% to make it a perfect circle */
            border-radius: 30%;
            box-shadow: 0 5px 15px -5px #00000070;
            color: #3498db;
            overflow: hidden;
            position: relative;
            transition: color 0.3s ease; /* Transition for smooth color change */
        }

        .btn i {
            font-size: 1.625rem;
            transition: transform 0.2s linear, color 0.3s ease; /* Added transition for color */
        }

        .btn:hover i {
            transform: scale(1.3);
            color: #f1f1f1; /* Adjusted hover color */
        }

        .btn::before {
            content: "";
            position: absolute;
            width: 120%;
            height: 120%;
            background: #3498db;
            transform: rotate(45deg);
            left: -110%;
            top: 90%;
            transition: background 0.3s ease; /* Added transition for smoother effect */
        }

        .btn:hover::before {
            animation: aaa 0.7s 1;
            top: -10%;
            left: -10%;
        }

        /* Media query for smaller screens */
        @media only screen and (max-width:470px) {
            .btn {
                width: 2.5rem;
                height: 2.5rem;
                margin: 7px;
            }

            .btn i {
                font-size: 1rem;
            }
        }


        /* 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);
        }




        .home__container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            padding: 0 1rem;
        }

        .home__content {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1200px;
            gap: 2rem;
        }

        .home__data {
            flex: 1;
            min-width: 300px;
        }

        .home__title {
            font-size: var(--big-font-size);
            color: var(--title-color);
            margin-bottom: var(--mb-0-25);
        }

        .home__subtitle {
            font-size: var(--h2-font-size);
            color: var(--text-color);
            margin-bottom: 1rem;
        }

        .home__description {
            font-size: var(--normal-font-size);
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .home__img {
            flex: 0 0 300px;
            max-width: 100%;
            text-align: center;
        }

        .home__blob {
            width: 100%;
            max-width: 300px;
            height: auto;
            fill: var(--first-color);
        }

        /*.home__blob-img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }*/

        /* Social Media Icons */
        .social_media_icon {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: flex-start;
        }

        /* Interests Section */
        .interests__section {
            margin-top: 2rem;
        /*    text-align: center;*/
        }

        .interests__heading {
            font-size: var(--h2-font-size);
            color: var(--title-color);
            position: relative;
            display: inline-block;
            margin-bottom: 2rem;
            padding-bottom: 0.5rem;
        }

        .interests__heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--first-color), var(--first-color-alt));
            border-radius: 2px;
        }

        .interests__container {
            display: grid;
            gap: 1.5rem;
            justify-content: center;
        }

        .interests__card {
            background: var(--container-color);
            border-radius: 1rem;
            padding: 1.5rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            min-width: 150px;
            position: relative;
            overflow: hidden;
        }

        .interests__card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(120deg, transparent, rgba(8, 96, 95, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .interests__card:hover::before {
            left: 100%;
        }

        .interests__card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .interests__icon {
            font-size: 2.5rem;
            color: var(--first-color);
            margin-bottom: 0.75rem;
            transition: transform 0.3s ease;
        }

        .interests__card:hover .interests__icon {
            transform: scale(1.2);
        }

        .interests__title {
            font-size: var(--h3-font-size);
            color: var(--title-color);
            margin: 0;
            font-weight: 500;
        }

        /* Footer */
        .footer {
            text-align: center;
            padding: 1rem 0;
            background-color: var(--container-color);
        }

        .footer__copy {
            font-size: var(--small-font-size);
            color: var(--text-color-light);
        }


        /* Responsive Design */
        @media (max-width: 767px) {
            .home__content {
                flex-direction: column;
                text-align: center;
            }

            .home__data {
                order: 2;
            }

            .home__img {
                order: 1;
                flex: 0 0 auto;
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }

            .social_media_icon {
                justify-content: center;
            }

            .interests__container {
                grid-template-columns: repeat(2, 1fr);
            }

            .interests__heading {
                font-size: 1.5rem;
            }
        }

        @media (min-width: 768px) and (max-width: 1023px) {
            .home__content {
                flex-direction: row;
                gap: 1rem;
            }

            .home__img {
                flex: 0 0 250px;
            }

            .interests__container {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .home__content {
                gap: 3rem;
            }

            .home__img {
                flex: 0 0 300px;
            }

            .interests__container {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 320px) {
            .home__title {
                font-size: 1.5rem;
            }

            .home__subtitle {
                font-size: 1rem;
            }

            .interests__container {
                grid-template-columns: 1fr;
            }

            .interests__card {
                padding: 1rem;
            }

            .interests__icon {
                font-size: 2rem;
            }
        }



    


        .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;
            }
        }
