        /* General Styles */
        @import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600&display=swap');

        :root {
            --underweight: orange;
            --normal: green;
            --overweight: lightcoral;
            --obese: crimson;
            --unique_hover_bg_color_2024: rgb(20, 20, 20);
            --unique_hover_card_color_2024: #46bd46;
            --mouse-x: 0px;
            --mouse-y: 0px;
        }

        .Card

        body{
            background-color: #000;
        }
        .sent{
            background-color: #000;
        }

        .bmi-container {
            margin-left: 450px;
            margin-block: 1.5rem;
            width: min(480px, 90%);
            background: #000000;
            padding: 1.5rem;
            border-radius: 10px;
            backdrop-filter: blur(30px);
            border: 2px solid rgba(255, 255, 255,);
            box-shadow: 0 0px 30px rgba(255, 255, 255, 0.18);
            display: grid;
            gap: 1rem;
        }

        .bmi-calculator {
            display: flex;
            flex-direction: column;
        }

        .bmi-container h1 {
            color: #46bd46;
        }

        .bmi-calculator>*:not(:last-child) {
            margin-bottom: 1rem;
        }

        .bmi-calculator div {
            display: flex;
            align-items: center;
            gap: 1rem;
            
        }

        .bmi-calculator label {
            flex: 0 0 120px;
            font-weight: 600;
            color: #46bd46;
        }

        .bmi-calculator input {
            width: 100%;
            border: 1px solid #ccc;
            border-radius: 5px;
            padding: 10px;
            outline-color: #555;
            font-size: 1.25rem;
            text-align: center;
        }

        .bmi-calculator button {
            width: 50%;
            border-radius: 5px;
            border: none;
            cursor: pointer;
            padding: 10px;
            background: #46bd46;
            color: #000000;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: 0.3s;
            font-size: 0.875rem;
        }

        .bmi-calculator button[type="reset"] {
            background: #444;
        }

        .bmi-calculator button:hover {
            filter: brightness(120%);
        }

        .bmi-output {
            text-align: center;
        }

        #bmi-value {
            font-size: 4rem;
        }

        #bmi-description strong {
            text-transform: uppercase;
        }

        .bmi-scale {
            display: flex;
        }

        .bmi-scale div {
            flex: 1;
            text-align: center;
            text-transform: uppercase;
            border-top: 5px solid var(--color);
            padding: 10px;
        }

        .bmi-scale h4 {
            font-size: 0.75rem;
            color: #46bd46;
        }

        @media (max-width: 480px) {
            .bmi-scale {
                flex-direction: column;
            }

            .bmi-scale div {
                padding: 4px 10px;
                display: flex;
                align-items: center;
                gap: 0.5rem;
                border-top: 1px solid #eee;
                border-right: 1px solid #eee;
                border-left: 5px solid var(--color);
            }

            .bmi-scale div:last-child {
                border-bottom: 1px solid #eee;
            }

            .bmi-scale h4 {
                width: 120px;
                text-align: start;
            }

            .bmi-scale p {
                font-size: 0.875rem;
                margin-left: auto;
            }
        }

        .underweight {
            color: var(--underweight);
        }

        .healthy {
            color: var(--normal);
        }

        .overweight {
            color: var(--overweight);
        }

        .obese {
            color: var(--obese);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --black: #000;
            --white: #fff;
            --greyLight: #e1e3e5;
            --greyMedium: #8a959e;
            --greyDark: #323a45;
            --purple: #9b59b6;
            --orange: #ff6d3a;
            --blue: #3498db;
            --defaultTransition: all 250ms ease-in-out;
        }

        body {
            min-height: 100vh;
            color: #fff;
            font-family: "Zen Dots", serif;
            overflow-x: hidden;
            /* Prevent horizontal scrolling */
        }

        /* Loading Screen */
        #loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000000;
            /* Black background */
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        #loading-screen img {
            width: 50%;
            /* Adjusted width */
            height: 70%;
            /* Adjusted height */
           
        }

        /* Main Website */
        #main-website {
            display: none;
            /* Hidden initially */
        }

        /* Header Section with Background GIF */
        header {
            position: relative;
            width: 100%;
            height: 600px;
            /* Reduced height */
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #46bd46;
            text-align: center;
            padding: 2px;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .header-left {
            padding-top: -10%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding-left: 400px;
            opacity: 1;
            transition: opacity 0.5s ease;
        }

        header h1.slide-in {
            font-size: 3rem;
            /* Reduced font size */
            margin-top: -50px;
            /* Added margin to reduce space above */
            animation: slideIn 1s ease-in-out;
            /* Text slides in */
        }

        header .header-button {
            margin-top: 25px;
            background-color: rgb(0, 0, 0);
            /* Neon blue color */
            color: #46bd46;
            /* Black text */
            border: none;
            border-radius: 20px;
            /* Rounded corners */
            padding: 10px 30px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
            border: 2px solid #46bd46;
        }

        header .header-button:hover {
            background-color: #46bd46;
            /* Darker blue on hover */
            color: #ffffff;
            border: 1px solid #000000;
        }

        @keyframes slideIn {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Stock Ticker Section */
        .stock-ticker {
            background-color: transparent;
            backdrop-filter: blur(10px);
            color: #46bd46;
            font-size: 25px;
            padding-block: 8px;
            padding-bottom: 100px;
            margin-bottom: px;

            overflow: hidden;
            user-select: none;

            --gap: 20px;
            display: flex;
            gap: var(--gap);
        }

        .stock-ticker ul {
            list-style: none;
            flex-shrink: 0;
            min-width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: var(--gap);

            animation: scroll 20s linear infinite;
        }

        .stock-ticker:hover ul {
            animation-play-state: paused;
        }

        @keyframes scroll {
            to {
                transform: translateX(calc(-100% - var(--gap)));
            }
        }

        .stock-ticker ul:first-child {
            /* background-color: yellow; */
        }

        .stock-ticker ul:last-child {
            /* background-color: pink; */
        }

        .stock-ticker .company,
        .stock-ticker .price {
            font-weight: bold;
        }

        .stock-ticker .price {
            margin-inline: 4px;
        }

        .stock-ticker .plus::before {
            content: "";
        }

        .stock-ticker .minus::before {
            content: "";
        }

        .stock-ticker .plus .change,
        .stock-ticker .plus::before {
            color: #089981;
        }

        .stock-ticker .minus .change,
        .stock-ticker .minus::before {
            color: #f23645;
        }

        .logo {
            width: 250px;
            /* Adjust size as needed */
            height: 250px;
            margin-bottom: 0px;
            animation: slideIn 1s ease-in-out;
            /* Logo slides in */
            margin-left: -30%;
        }

        .header-right video {
            max-width: 150%;
            min-width:30%;
            height: 100%;
            object-fit: cover;
            opacity: 1;
            transition: opacity 0.5s ease;
            margin-left: -17%;
        }

        /* Full-Height Container with Background Image */
        #full-height-container {
            background: url('assets/') repeat center;
            position: relative;
            background-color: #000000;
            min-height: 100vh;
            /* Full viewport height */
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            padding: 50px 20px;
            /* Adjusted padding */
            padding-top: 0px;
        }

        /* Cards Section */
        #cards-section {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .cards-container {
            padding: 20px;
            padding-bottom: 50px;
            border-radius: 15px;
            text-align: center;
            margin: 20px;
        }

        .cards {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 13px;
        }

        .card {
            padding: 30px;
            width: 250px;
            height: 350px;
            background: #46bd46;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            transition: all 0.5s ease;
            border: 1px solid rgb(0, 0, 0);
            margin: 10px;
            opacity: 0;
            transform: translateY(20px);
        }

        .card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .card h2 {
            color: #000000;
            font-size: 1.2rem;
            text-align: center;
            margin-bottom: 20px;
        }

        .card p {
            color: #000000;
            font-size: 1rem;
            text-align: center;
            line-height: 1.5;
        }

        .card i {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #000000;
        }

        .card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                0deg, 
                transparent, 
                transparent 30%, 
                rgb(0, 0, 0)
            );
            transform: rotate(-45deg);
            transition: all 0.5s ease;
            opacity: 0;
        }

        .card:hover {
            transform: scale(1.05);
            box-shadow: 0 0 10px rgb(0, 0, 0);
        }

        .card:hover::before {
            opacity: 1;
            transform: rotate(-45deg) translateY(100%);
        }
        

        @media (max-width: 768px) {
            .cards {
                flex-direction: column;
            }

            .card {
                width: 100%;
                margin: 10px 0;
            }
        }

        /* Sirona AI Section */


        /* Cards Date Section */
        


        /* Footer Section */



        .contact-small {
            display: block;
            padding: 1rem 0;
            font-size: 0.8rem;
            transition: opacity 0.33s;
            z-index: 1001;
            position: relative;
        }

        .contact-textarea,
        .contact-input,
        #contact-sendLetter {
            line-height: 1.5rem;
            border: 0;
            outline: none;
            font-family: inherit;
            appearance: none;
        }

        .contact-textarea,
        .contact-input {
            color: #46bd46;
            background-color: transparent;
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='24'><rect fill='rgb(229, 225, 187)' x='0' y='23' width='10' height='1' /></svg>");
        }

        .contact-textarea {
            width: 100%;
            height: 8rem;
            resize: none;
        }

        .contact-input {
            width: 50%;
            margin-bottom: 1rem;
        }

        .contact-input[type=text]:invalid,
        .contact-input[type=email]:invalid {
            box-shadow: none;
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='24'><rect fill='rgba(240, 132, 114, 0.5)' x='0' y='23' width='10' height='1' /></svg>");
        }

        #contact-sendLetter {
            padding: 0.5rem 1rem;
            border-radius: 0.25rem;
            background-color: rgba(78, 94, 114, 0.9);
            color: white;
            font-size: 1rem;
            transition: background-color 0.2s;
        }

        #contact-sendLetter:hover,
        #contact-sendLetter:focus {
            outline: none;
            background-color: #46bd46;
        }

        .contact-input[type=text]:focus,
        .contact-input[type=email]:focus,
        .contact-textarea:focus {
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='24'><rect fill='rgba(78, 94, 114, 0.3)' x='0' y='23' width='10' height='1' /></svg>");
            outline: none;
        }

        .contact-wrapper {
            width: 35rem;
            background-color: rgb(0, 0, 0);
            z-index: 1000;
            position: relative;
        }

        .contact-letter {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            width: 30rem;
            margin: auto;
            perspective: 60rem;

        }

        .contact-side {

            height: 12rem;
            background-color: #000000;
            outline: 1px solid transparent;
            width: 110%;
            margin-left: -5%;
        }

        .contact-side:nth-of-type(1) {
            padding: 2rem 2rem 0;
            border-radius: 1rem 1rem 0 0;
            
        }

        .contact-side:nth-of-type(2) {
            padding: 2rem;
            border-radius: 0 0 1rem 1rem;
            text-align: right;
        }

        .contact-envelope {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            margin: auto;
        }

        .contact-envelope.contact-front {
            width: 10rem;
            height: 6rem;
            border-radius: 0 0 1rem 1rem;
            overflow: hidden;
            z-index: 9999;
            opacity: 0;
        }

        .contact-envelope.contact-front::before,
        .contact-envelope.contact-front::after {
            position: absolute;
            display: block;
            width: 12rem;
            height: 6rem;
            background-color: #46bd46;
            transform: rotate(30deg);
            transform-origin: 0 0;
            box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
            content: '';
        }

        .contact-envelope.contact-front::after {
            right: 0;
            transform: rotate(-30deg);
            transform-origin: 100% 0;
        }

        .contact-envelope.contact-back {
            top: -4rem;
            width: 10rem;
            height: 10rem;
            overflow: hidden;
            z-index: -9998;
            opacity: 0;
            transform: translateY(-6rem);
        }

        .contact-envelope.contact-back::before {
            display: block;
            width: 10rem;
            height: 10rem;
            background-color: #46bd46;
            border-radius: 1rem;
            content: '';
            transform: scaleY(0.6) rotate(45deg);
        }

        .contact-result-message {
            position: absolute;
            left: 100px;
            margin-top: 80px;
            opacity: 0;
            transition: all 0.3s 2s;
            transform: translateY(0);
            z-index: 1001;
            color: #46bd46;
            font-size: 1rem;
        }

        .sent .contact-letter {
            animation: scaleLetter 1s forwards ease-in;
        }

        .sent .contact-side:nth-of-type(1) {
            transform-origin: 0 100%;
            animation: closeLetter 0.66s forwards ease-in;
        }

        .sent .contact-side:nth-of-type(1) h1,
        .sent .contact-side:nth-of-type(1) .contact-textarea {
            animation: fadeOutText 0.66s forwards linear;
        }

        .sent #contact-sendLetter {
            background-color: rgba(78, 94, 114, 0.2);
        }

        .sent .contact-envelope {
            animation: fadeInEnvelope 0.5s 1.33s forwards ease-out;
        }

        .sent .contact-result-message {
            opacity: 1;
            transform: translateY(0);
        }

        .sent .contact-small {
            opacity: 0;
        }

        .contact-centered {
            position: absolute;
            left: 0;
            right: 0;
            margin: 1rem auto;
            z-index: 1001;
        }

        .card-info2 {
            width: 281px;
            height: 327px;
            border-radius: 30px;
            background: #ffffff;
            box-shadow: 15px 15px 30px rgb(109, 221, 124), -15px -15px 30px rgb(93, 202, 138);
        }
        
        
           
           

        

        @keyframes closeLetter {
            50% {
                transform: rotateX(-90deg);
            }

            100% {
                transform: rotateX(-180deg);
            }
        }

        @keyframes fadeOutText {
            49% {
                opacity: 1;
            }

            50% {
                opacity: 0;
            }

            100% {
                opacity: 0;
            }
        }

        @keyframes fadeInEnvelope {
            0% {
                opacity: 0;
                transform: translateY(8rem);
            }

            100% {
                opacity: 1;
                transform: translateY(4.5rem);
            }
        }

        @keyframes scaleLetter {
            66% {
                transform: translateY(-8rem) scale(0.5, 0.5);
            }

            75% {
                transform: translateY(-8rem) scale(0.5, 0.5);
            }

            90% {
                transform: translateY(-8rem) scale(0.3, 0.5);
            }

            97% {
                transform: translateY(-8rem) scale(0.33, 0.5);
            }

            100% {
                transform: translateY(-8rem) scale(0.3, 0.5);
            }
        }

        /* Social media icons - Updated to target both header and footer */
        .social-icons {
            display: flex;
            justify-content: center;
            padding: 0;
            margin: 0;
            list-style: none;
            position: relative;
            z-index: 100;
        }

        .social-icons li {
            margin: 0 10px;
        }

        .social-icons li a {
            width: 60px;
            height: 60px;
            background-color: #46bd46;
            text-align: center;
            line-height: 60px;
            font-size: 25px;
            display: block;
            border-radius: 50%;
            position: relative;
            overflow: hidden;
            border: 3px solid #000000;
            z-index: 1;
            transition: all 0.5s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        footer .social-icons li a.visible {
            opacity: 1;
            transform: translateY(0);
        }

        footer .social-icons li a:hover {
            background-color: rgb(0, 0, 0);
        }

        footer .social-icons li a .icon {
            position: relative;
            color: #000000;
            transition: .5s;
            z-index: 3;
        }

        footer .social-icons li a:hover .icon {
            color: #46bd46;
            transform: rotateY(360deg);
            background-color: #000000;
        }

        /* BMI Section */
        .bmi-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem;
            gap: 2rem;
            
        }

        .bmi-gif-container {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 500px;
        }

        /* Contact Section */
        .contact-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem;
            gap: 2rem;
            margin-top: -250px;
            min-height: 500px;
            margin-right:300px;
        }

        .contact-heading {
            flex: 1;
            text-align: left;
            padding-left: 250px;
            padding-top: 0;
            
            color: #46bd46;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            height: 100%;
        }

        .contact-heading h2 {
            font-size: 2.5rem;
            margin: 0 0 1rem 50px;
            margin-top: 0px;
            font-weight: bold;
            margin-bottom: -100px;;
        }

        .contact-heading p {
            font-size: 1.8rem;
            color: #46bd46;
            margin: 1rem 0 0 50px;
            margin-left: 300px;
        }

        .contact-wrapper {
            flex: 1;
            max-width: 500px;
            margin-right: 50px;
            align-self: center;
        }

        /* Card Updates for Consistent Alignment */
        .card {
            text-align: center;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 1rem;
        }

        .card h2 {
            width: 100%;
            text-align: center;
            margin-bottom: 15px;
        }

        .card p {
            width: 100%;
            text-align: center;
            margin-bottom: 15px;
        }

        .card .icon {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        /* Additional Responsive adjustments */
        @media (max-width: 1200px) {
            .header-content {
                flex-direction: column;
                align-items: center;
            }

            .header-left {
                margin-left: 0;
                text-align: center;
                padding: 0 20px; /* Add padding for better spacing */
            }

            .header-right {
                width: 100%;
                margin-top: 20px; /* Add margin for spacing */
            }

            .stock-ticker {
                font-size: 18px; /* Adjust font size for smaller screens */
            }

            .contact-heading {
                padding-left: 0; /* Remove left padding */
                text-align: center; /* Center text */
            }

            .contact-heading h2 {
                font-size: 2rem; /* Adjust heading size */
                margin: 0; /* Remove margin */
            }

            .contact-heading p {
                font-size: 1rem; /* Adjust paragraph size */
                margin: 0; /* Remove margin */
            }
        }

        @media (max-width: 992px) {
            .bmi-section {
                flex-direction: column;
                padding: 1rem;
            }

            .bmi-gif-container {
                max-width: 100%;
                margin: 0 auto;
            }

            .unique_hover_card_2024 {
                width: 100%; /* Full width for cards */
                margin-bottom: 1rem;
            }

            .card {
                width: 100%; /* Full width for cards */
                padding: 15px; /* Adjust padding */
            }

            .contact-section {
                flex-direction: column; /* Stack elements */
                align-items: center; /* Center align */
                padding: 1rem; /* Add padding */
            }

            .contact-wrapper {
                width: 90%; /* Full width for contact wrapper */
                margin: 0; /* Remove margin */
            }
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column; /* Stack header items vertically */
                align-items: center; /* Center align items */
                text-align: center; /* Center text */
            }

            .header-left {
                margin-left: 0; /* Remove negative margin */
                width: 100%; /* Full width */
                padding: 0 10px; /* Add padding for spacing */
            }

            .header-left h1 {
                font-size: 2rem; /* Smaller font size for the title */
            }

            .header-left p {
                font-size: 0.9rem; /* Smaller font size for the paragraph */
            }

            .header-button {
                font-size: 0.9rem; /* Smaller font size for the button */
                padding: 6px 15px; /* Adjust padding for the button */
            }

            .header-right {
                width: 100%; /* Full width */
                display: flex; /* Ensure video is responsive */
                justify-content: center; /* Center video */
                margin-top: 10px; /* Add spacing above video */
                height:100%
            }

            .header-right video {
                width: 100%; /* Make video responsive */
                height: auto; /* Maintain aspect ratio */
            }

            .stock-ticker {
                font-size: 16px; /* Further adjust font size */
            }

            .card {
                padding: 10px; /* Reduce padding for smaller screens */
            }

            .contact-heading h2 {
                font-size: 1.5rem; /* Adjust heading size */
            }

            .contact-heading p {
                font-size: 0.9rem; /* Adjust paragraph size */
            }

            .header-left h1 {
                font-size: 2.5rem; /* Smaller font size for the title */
            }

            .header-left p {
                font-size: 1rem; /* Smaller font size for the paragraph */
            }

            .header-button {
                font-size: 1rem; /* Smaller font size for the button */
                padding: 8px 20px; /* Adjust padding for the button */
            }
        }

        @media (max-width: 480px) {
            .contact-heading h2 {
                font-size: 1.2rem; /* Further reduce heading size */
            }

            .contact-heading p {
                font-size: 0.8rem; /* Further reduce paragraph size */
            }

            .bmi-container {
                padding: 1rem;
            }

            .bmi-section {
                padding: 0.5rem;
            }

            .unique_hover_card_2024 {
                height: auto; /* Allow height to adjust */
            }

            .unique_hover_card_image_2024 > i {
                font-size: 2.5em; /* Adjust icon size */
            }

            .header-left h1 {
                font-size: 1.5rem; /* Further reduce font size for very small screens */
            }

            .header-left p {
                font-size: 0.8rem; /* Further reduce paragraph font size */
            }

            .header-button {
                font-size: 0.8rem; /* Further reduce button font size */
                padding: 5px 10px; /* Adjust padding for the button */
            }

            .header-right {
                margin-top: 5px; /* Reduce margin for smaller screens */
            }

            .header-right video {
                width: 100%; /* Ensure video fits the container */
                height: auto; /* Maintain aspect ratio */
            }
        }

        /* Card Animation Styles */
        .card {
            opacity: 0; /* Initially hidden */
            transform: translateY(20px); /* Start slightly below */
            transition: all 0.5s ease; /* Smooth transition */
        }

        .card.visible {
            opacity: 1; /* Fade in */
            transform: translateY(0); /* Move to original position */
        }

        /* Social Icons Animation */
        footer .social-icons li a {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }

        footer .social-icons li a.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Ensure the intersection observer is working */
        .cards__item {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }

        .cards__item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Social Media Icons - Header specific */
        header .social-icons {
            display: flex;
            justify-content: center;
            padding: 0;
            margin: 0;
            list-style: none;
            position: relative;
            z-index: 100;
        }

        header .social-icons li {
            margin: 0 10px;
        }

        header .social-icons li a {
            width: 60px;
            height: 60px;
            background-color: #46bd46;
            text-align: center;
            line-height: 60px;
            font-size: 25px;
            display: block;
            border-radius: 50%;
            position: relative;
            overflow: hidden;
            border: 3px solid #000000;
            z-index: 1;
            transition: all 0.5s ease;
            opacity: 1;
            transform: translateY(0);
        }

        header .social-icons li a .icon {
            position: relative;
            color: #000000;
            transition: .5s;
            z-index: 3;
        }

        header .social-icons li a:hover {
            background-color: rgb(0, 0, 0);
        }

        header .social-icons li a:hover .icon {
            color: #46bd46;
            transform: rotateY(360deg);
        }

        .x7z9_hover_animation_container_2024 {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin: 20px auto;
            width: 350px;
            height: 100px;
            background: #46bd46;
            border-radius: 75px;
            font-family: 'Montserrat', sans-serif;
            font-size: 20px;
            font-weight: lighter;
            letter-spacing: 2px;
            transition: 1s box-shadow;
            cursor: pointer;
            z-index: 1;
        }

        .x7z9_hover_animation_container_2024:hover {
            box-shadow: 0 5px 35px 0px rgba(0,0,0,.1);
        }

        .x7z9_hover_animation_container_2024::before, 
        .x7z9_hover_animation_container_2024::after {
            content: '';
            position: absolute;
            width: 350px;
            height: 100px;
            background: #46bd46;
            border-radius: 75px;
            z-index: -1;
            opacity: 0;
            transition: 0.3s ease;
        }

        .x7z9_hover_animation_container_2024::after {
            background: #ffffff;
        }

        .x7z9_hover_animation_container_2024:hover::before {
            opacity: 1;
            animation: x7z9_hover_clockwise_2024 1s linear infinite;
        }

        .x7z9_hover_animation_container_2024:hover::after {
            opacity: 1;
            animation: x7z9_hover_counterclockwise_2024 2s linear infinite;
        }

        @keyframes x7z9_hover_clockwise_2024 {
            0% { transform: translate(-5px, -5px); }
            25% { transform: translate(5px, -5px); }
            50% { transform: translate(5px, 5px); }
            75% { transform: translate(-5px, 5px); }
            100% { transform: translate(-5px, -5px); }
        }

        @keyframes x7z9_hover_counterclockwise_2024 {
            0% { transform: translate(5px, -5px); }
            25% { transform: translate(5px, 5px); }
            50% { transform: translate(-5px, 5px); }
            75% { transform: translate(-5px, -5px); }
            100% { transform: translate(5px, -5px); }
        }

        #unique_hover_cards_2024 {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;  
            max-width: 916px;
            width: calc(100% - 20px);
            margin: 20px auto;
            position: relative;
            z-index: 1;
        }

        #unique_hover_cards_2024:hover > .unique_hover_card_2024::after {
            opacity: 1;
        }

        .unique_hover_card_2024 {
            background-color: #46bd46 !important;
            width: 300px;
            height: 260px;
            border-radius: 10px;
            position: relative;
            display: flex;
            flex-direction: column;
            cursor: pointer;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        /* Gradient hover effect */
        .unique_hover_card_2024::before,
        .unique_hover_card_2024::after {
            border-radius: inherit;
            content: "";
            height: 100%;
            left: 0;
            opacity: 0;
            position: absolute;
            top: 0;
            transition: opacity 500ms;
            width: 100%;
            pointer-events: none;
        }

        .unique_hover_card_2024::before {
            background: radial-gradient(
                800px circle at var(--mouse-x) var(--mouse-y), 
                rgba(255, 255, 255, 0.1),
                transparent 40%
            );
            z-index: 3;
        }

        .unique_hover_card_2024::after {  
            background: radial-gradient(
                600px circle at var(--mouse-x) var(--mouse-y), 
                rgba(255, 255, 255, 0.2),
                transparent 40%
            );
            z-index: 1;
        }

        .unique_hover_card_2024:hover::before,
        .unique_hover_card_2024:hover::after {
            opacity: 1;
        }

        .unique_hover_card_image_2024 {
            align-items: center;
            display: flex;
            height: 140px;
            justify-content: center;
            overflow: hidden;
        }

        .unique_hover_card_image_2024 > i {
            font-size: 6em;
            opacity: 0.25;
            color: rgb(0, 0, 0);  /* White icon */
            transition: all 0.3s ease;
        }

        .unique_hover_card_2024:hover .unique_hover_card_image_2024 > i {
            opacity: 0.5;
            transform: scale(1.1);
        }

        .unique_hover_card_info_wrapper_2024 {
            align-items: center;
            display: flex;
            flex-grow: 1;
            justify-content: flex-start;
            padding: 0px 20px;
        }

        .unique_hover_card_info_2024 {
            align-items: flex-start;
            display: flex;
            gap: 10px;
        }

        .unique_hover_card_info_2024 > i {  
            font-size: 1em;
            height: 20px;
            line-height: 20px;
            color: rgb(0, 0, 0);
        }

        .unique_hover_card_info_title_2024 > h3 {
            font-size: 1.1em;
            line-height: 20px;
            color: rgb(0, 0, 0);
            margin: 0px;
        }

        .unique_hover_card_info_title_2024 > h4 {
            color: rgba(0, 0, 0, 0.5);
            font-size: 0.85em;
            margin-top: 8px;
        }

        /* Added hover effects */
        .unique_hover_card_2024:hover .unique_hover_card_info_title_2024 > h3 {
            color: rgb(0, 0, 0);
        }

        .unique_hover_card_2024:hover .unique_hover_card_info_title_2024 > h4 {
            color: rgba(0, 0, 0, 0.7);
        }

        /* Responsive styles */
        @media(max-width: 1000px) {
            #unique_hover_cards_2024 {    
                max-width: 1000px;
                padding: 10px 0px;
            }
            
            .unique_hover_card_2024 {
                flex-shrink: 1;
                width: calc(50% - 4px);
            }
        }

        @media(max-width: 500px) {
            .unique_hover_card_2024 {
                height: 180px;
            }
            
            .unique_hover_card_image_2024 {
                height: 80px;  
            }
            
            .unique_hover_card_image_2024 > i {
                font-size: 3em;
            }
            
            .unique_hover_card_info_wrapper_2024 {
                padding: 0px 10px;
            }
            
            .unique_hover_card_info_2024 > i { 
                font-size: 0.8em; 
            }
            
            .unique_hover_card_info_title_2024 > h3 {
                font-size: 0.9em;
            }

            .unique_hover_card_info_title_2024 > h4 {
                font-size: 0.8em;
                margin-top: 4px;
            }
        }

        @media(max-width: 320px) {
            .unique_hover_card_2024 {
                width: 100%;
            }
        }
    
        