body {
    font-family: Roboto, sans-serif;
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    color: #0366d6; 
    text-align: left;
    background-color: #f5f5f5; 
    background-repeat: no-repeat;
    background-size: cover;
}

.cards .card {
    background: #ffffff;
    box-shadow: 0 20px 30px -10px #0000001a;
}

.cards .card article h2 {
    color: #0366d6;
}

.cards .card article .title {
    color: #ffffff;
}

.cards .card article .desc {
    color: #555555; /* Dark gray description color */
}

.cards .card.closed .pic:before {
    background-color: #000000; /* Dark background for closed card image */
}

.cards .card.closed:hover .arrow {
    background-size: 100%;
    opacity: .6;
}

        .heading{
            text-align: center;
            color: black;
            margin-top: 50px;
        }
        .cards {
            margin-top: 100px;
            display: flex;
            justify-content: center;
            align-items: center;
            
        }

        .cards .card {
            background: #fff;
            text-decoration: none;
            border-radius: 14px;
            box-shadow: 0 20px 30px -10px #0000001a;
            max-width: 200px;
            min-width: 160px;
            overflow: hidden;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-direction: column;
            position: relative;
            transition: all .4s ease;
            margin: 0 10px;
        }

.cards .card:before {
    height: 120px;
    width: calc(100% + 100px);
    content: "";
    position: absolute;
    background-image: radial-gradient(circle, rgb(254, 235, 243) 0%, rgb(144, 238, 144) 100%);
    border-radius: 4px 4px 100% 100%;
    transition: all .4s ease-out;
    top: 0;
}


        .cards .card article {
            z-index: 1;
            display: flex;
            align-items: center;
            flex-direction: column;
            text-align: center;
        }

        .cards .card article h2 {
            color: #000;
            margin: 0;
            padding: 20px 20px 0;
            font-weight: 500;
            height: 69px;
            font-size: 18px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .cards .card article .title {
            color: #fff;
            padding: 10px 20px;
            letter-spacing: .8px;
            transition: all .4s ease;
        }

        .cards .card article .desc {
            padding: 10px 30px;
            font-size: 14px;
            text-align: center;
            line-height: 24px;
            color: #666;
            height: 90px;
            transition: all .4s ease-out;
        }

        .cards .card article .pic {
            width: 70px;
            height: 70px;
            overflow: hidden;
            border-radius: 100%;
            margin: 20px 0;
            background: #fff;
            box-shadow: 0 0 #3d37374d;
            transition: all .6s ease;
            border: 1px solid #777;
        }

        .cards .card article .pic img {
            margin-top: 10px;
            width: 70%;
        }

        .cards .card .actions {
            width: 100%;
            display: flex;
            justify-content: space-between;
            background: white;
            z-index: 1;
        }

        .cards .card .actions .btn {
            border: 0;
            background-color: transparent;
            box-sizing: border-box;
            width: calc(50% - 1px);
            height: 36px;
            margin: 0;
            text-transform: uppercase;
            font-size: 10px;
            transition: all .6s ease-in-out;
            cursor: pointer;
            color: #4481eb;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 500;
            letter-spacing: .5px;
            background: rgba(68, 129, 235, .08);
        }

        .cards .card .actions .btn span {
            z-index: 1;
            opacity: 1;
            transition: all .4s ease-in-out;
        }

        .cards .card .actions .btn .icon {
            width: 10px;
            opacity: 0;
            position: absolute;
            transition: all .2s ease-in-out;
        }

        .cards .card .actions .btn:before {
            content: "";
            width: 100%;
            height: 0%;
            position: absolute;
            background: #4481eb;
            transition: all .4s ease;
            bottom: 0;
            opacity: .2;
        }

        .cards .card .actions .btn:focus {
            outline: 0;
        }

        .cards .card .actions .btn:hover {
            background-color: #064df180;
        }

        .cards .card .actions .btn:hover span {
            opacity: 0;
            transition: all .3s ease-in-out;
        }

        .cards .card .actions .btn:hover .icon {
            width: 22px;
            opacity: 1;
            transition: all .4s ease-in-out;
        }

        .cards .card .actions .btn:hover:nth-child(3) .icon {
            width: 18px;
        }

        .cards .card .actions .btn:hover:before {
            height: 100%;
        }

        .cards .card .actions .btn.clicked span {
            display: none;
        }

        .cards .card .actions .btn.clicked .icon {
            width: 22px;
            opacity: 1;
            animation: icon .5s ease forwards;
        }

        @keyframes icon {
            0% {
                width: 22px;
            }

            50% {
                width: 40px;
            }

            to {
                width: 22px;
            }
        }

        .cards .card .actions .btn.clicked:before {
            opacity: .3;
            height: 100%;
        }

        .cards .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 5px 10px -5px #0000004d;
        }

        .cards .card:hover:before {
            height: 100%;
            border-radius: 4px;
        }

        .cards .card:hover .desc {
            color: #fff;
        }

        .cards .card:hover .pic {
            box-shadow: 0 0 0 8px #5965c0;
        }

        .cards .card:hover .pic img {
            -webkit-filter: grayscale(0%);
            filter: grayscale(0%);
        }

        .cards .card.closed {
            min-width: 120px;
            max-width: 120px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all .6s ease;
            cursor: pointer;
        }

        .cards .card.closed .title,
        .cards .card.closed .desc,
        .cards .card.closed .actions,
        .cards .card.closed .close {
            display: none;
        }

        .cards .card.closed h2 {
            padding: 0;
            height: 100%;
            transform: rotate(-90deg);
            width: 440px;
            z-index: 2;
            transition: all .6s ease;
        }
        .cards .card {
            background: #eaf6fd; /* Light blue card background */
            box-shadow: 0 20px 30px -10px #0000001a;
        }
        
        .cards .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 5px 10px -5px #0000004d;
        }
        
        .cards .card.closed {
            background: #a6dcef; /* Light blue background for closed cards */
        }
        

        .cards .card.closed .pic {
            border-radius: 100%;
            height: 400px;
            width: 400px;
            position: absolute;
            top: -20px;
            margin: 0;
            box-shadow: 0;
            transition: all .6s ease;
        }

        .cards .card.closed .pic img {
            object-fit: cover;
            height: 100%;
            transform: translateY(20px);
        }

        .cards .card.closed .pic:before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: #000;
            opacity: .5;
            z-index: 1;
            transition: all .4s ease;
            transform: translateY(20px);
        }

        .cards .card.closed:before {
            height: 100%;
            border-radius: 4px;
        }

        .cards .card.closed:hover .arrow {
            background-size: 100%;
            opacity: .6;
        }
        
        .chatbot-container {
            position: fixed;
            bottom: 10px;
            right: 10px;
            width: 200px; /* Adjust the width as needed */
            height: 200px; /* Adjust the height as needed */
            border: none;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            display: none; /* Hide by default */
        } 

        #chatbot-icon {
            position: fixed;
            bottom: 10px;
            right: 10px;
            width: 40px;
            height: 40px;
            cursor: pointer;
        }
        #carouselExampleCaptions {
            width: 50%; /* Adjust the width as needed */
            margin: auto; /* Center the carousel horizontally */
          }
          .button-33 {
            background-color: #c2fbd7;
            border-radius: 100px;
            box-shadow: rgba(44, 187, 99, .2) 0 -25px 18px -14px inset,rgba(44, 187, 99, .15) 0 1px 2px,rgba(44, 187, 99, .15) 0 2px 4px,rgba(44, 187, 99, .15) 0 4px 8px,rgba(44, 187, 99, .15) 0 8px 16px,rgba(44, 187, 99, .15) 0 16px 32px;
            color: green;
            cursor: pointer;
            display: inline-block;
            font-family: CerebriSans-Regular,-apple-system,system-ui,Roboto,sans-serif;
            padding: 7px 20px;
            text-align: center;
            text-decoration: none;
            transition: all 250ms;
            border: 0;
            font-size: 16px;
            user-select: none;
            -webkit-user-select: none;
            touch-action: manipulation;
            position: fixed;
            bottom: 20px; /* Adjust the distance from the bottom */
            left: 5%; 
            transform: translateX(-50%);
          }
          
          .button-33:hover {
            box-shadow: rgba(44,187,99,.35) 0 -25px 18px -14px inset,rgba(44,187,99,.25) 0 1px 2px,rgba(44,187,99,.25) 0 2px 4px,rgba(44,187,99,.25) 0 4px 8px,rgba(44,187,99,.25) 0 8px 16px,rgba(44,187,99,.25) 0 16px 32px;
            /* transform: scale(1.05) rotate(-1deg); */
          }

     
   