  
        
        .container1 {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            margin-top: 5rem;
        }

        .plan-card {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            width: 300px;
            text-align: center;
            margin: 10px;
            opacity: 0;
            transform: translateX(0);
            padding: 20px;
        }

        .plan-card1 {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            width: 300px;
            text-align: center;
            margin: 10px;
            opacity: 0;
            transform: translateX(0);
            padding: 20px;
        }

        .plan-card1:nth-child(odd) {
            animation: slideInLeft 4s forwards;
        }

        .plan-card1:nth-child(even) {
            animation: slideInRight 4s forwards;
        }

        .plan-card1:hover {
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            transform: translateY(-10px);
            background-color: #f0f0f0;
            padding: 20px;
        }

        .plan-card1 h2 {
            color: #000;
        }

        .plan-card1 .price {
            color: #6f2c91;
            font-size: 48px;
            margin: 10px 0;
        }

        .plan-card1 ul {
            list-style: none;
            padding: 0;
            color: #6f2c91;
            text-align: left;
        }

        .plan-card1 ul li {
            margin: 10px 0;
            position: relative;
            padding-left: 20px;
            color: inherit;
        }

        .plan-card1 ul li::before {
            content: '•';
            color: #ff00bf;
            position: absolute;
            left: 0;
            font-size: 1.2em;
            line-height: 1;
        }

        .plan-card:nth-child(odd) {
            animation: slideInLeft 2s forwards;
        }

        .plan-card:nth-child(even) {
            animation: slideInRight 2s forwards;
        }

        .plan-card:hover {
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            transform: translateY(-10px);
            background-color: #f0f0f0;
        }

        .plan-card h2 {
            color: #000;
        }

        .plan-card .price {
            color: #6f2c91;
            font-size: 48px;
            margin: 10px 0;
        }

        .plan-card ul {
            list-style: none;
            padding: 0;
            color: #6f2c91;
            text-align: left;
        }

        .plan-card ul li {
            margin: 10px 0;
            position: relative;
            padding-left: 20px;
            color: inherit;
        }

        .plan-card ul li::before {
            content: '•';
            color: #ff00bf;
            position: absolute;
            left: 0;
            font-size: 1.2em;
            line-height: 1;
        }

        /* Sliding animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100%);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100%);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .btn1 {
            background-color: #ff0048;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            display: inline-block;
            margin-top: 20px;
            transition: background-color 0.3s ease;
        }

        .btn1:hover {
            background-color: #ff1a66;
        }


        .hero-section {
            background: url('images/img/login-bg.jpeg') no-repeat center center/cover;
            height: 350px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            margin-bottom: 5px;

        }

        .hero-section h1 {
            font-size: 3rem;
            font-weight: bold;
        }

        .hero-section p {
            font-size: 1.2rem;
            font-weight: bold;
        }

        .inline {
            display: inline;
        }

        .i {
            margin-top: 2rem;
            align-items: center;
            font-size: 60px;
            cursor: pointer;
            color: rgb(255, 255, 255);
            border: none;
            border-radius: 50%;
        }
        
        