* {
    font-family: "Poppins";
    }

a{
    color: inherit;
    text-decoration: none;
    text-transform: none;
}

.linkedin-icon{
    color: #0a66c2;
}

.gradient-box {
    background: rgb(94,13,130);
    background: linear-gradient(145deg, rgba(94,13,130,1) 0%, rgba(28,5,91,1) 50%); 
}

.service-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff, #f3f3f3);
    box-shadow: 5px 5px 15px #d9d9d9, -5px -5px 15px #ffffff;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 8px 8px 20px #d1d1d1, -8px -8px 20px #ffffff;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(94,13,130,1), rgba(28,5,91,1));
}

.custom-badge {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.service-title {
    color: #2d3748;
    font-weight: 600;
}

.service-text {
    color: #718096;
    font-size: 0.95rem;
}


.timeline {
    border-left: 3px solid rgba(94,13,130,1);
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    margin: 0 auto;
    position: relative;
    padding: 50px;
    list-style: none;
    text-align: left;
    max-width: 40%;
}

.timeline .event {
    border-bottom: 1px dashed #e8ebf1;
    padding-bottom: 25px;
    margin-bottom: 25px;
    position: relative;
}

.timeline .event:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
    border: none;
}

.timeline .event:before,
.timeline .event:after {
    position: absolute;
    display: block;
    top: 0;
}

.timeline .event:before {
    left: -207px;
    content: attr(data-date);
    text-align: right;
    font-weight: 100;
    font-size: 0.9em;
    min-width: 120px;
}

.timeline .event:after {
    box-shadow: 0 0 0 3px #FF3366;
    left: -55.8px;
    background: #fff;
    border-radius: 50%;
    height: 9px;
    width: 9px;
    content: "";
    top: 5px;
}

@media (max-width: 767px) {
    .timeline {
        max-width: 98%;
        padding: 25px;
    }

    .timeline .event {
        padding-top: 30px;
    }

    .timeline .event:before {
        left: 0px;
        text-align: left;
    }

    .timeline .event:after {
        left: -31.8px;
    }
}