.jumbotron {
            background: linear-gradient(135deg,rgb(203, 17, 147), #2575fc);
            color: white;
            padding: 10px ;
        }
        .welcome-row {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px;
        }
        .welcome-row h1 {
            font-size: 5rem;
            font-weight: bold;
            text-transform: uppercase;
            margin: 0;
        }
        .welcome-img {
            width: 250px;
            height: auto;
        }
        .welcome-text {
            font-size: 80px; /* Increased font size */
            font-weight: bold;
            text-transform: uppercase;
            font-family: 'Poppins', sans-serif; /* Great font family */
            background: linear-gradient(90deg,rgb(97, 255, 136), #ffcc00,rgb(0, 212, 11),rgb(203, 17, 132),rgb(170, 252, 37));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 4px 4px 0rgb(97, 29, 207), 8px 8px 0 #ffcc00, 12px 12px 0 #00bcd4, 16px 16px 0 rgb(203, 17, 132),rgb(170, 252, 37);
        }
        .description-box {
            background: rgba(202, 199, 149, 1);
            padding: 20px;
            border-radius: 70px;
            margin-top: 30px;
        }
        .description-text {
            font-size: 1.5rem;
            line-height: 1.8;
            color: rgb(163, 15, 114);
            text-align: center;
        }
        .card {
            transition: transform 0.3s ease;
        }
        .card:hover {
            transform: translateY(-10px);
        }
        .section-heading {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 2rem;
        }
        .service-icon {
            font-size: 3rem;
            color:rgb(20, 17, 203);
            margin-bottom: 1rem;
        }
        .footer {
            background: #343a40;
            color: white;
            padding: 2rem 0;
        }