.adt-section {
    padding: 100px 0 0;
    text-align: center;
}

.adt-section .adt-header {
    margin-bottom: 26px;
}

.adt-section .adt-header h2 {
    color: #1A1A1A;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%; 
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.adt-section .adt-header p {
   color: #4D4D4D;
    text-align: center;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 24px; 
    margin: 0;
}

.adt-section .adt-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
}

.adt-section .adt-card {
    border-radius: 12px;
    background: #F5F5F5;
    padding: 24px 40px;
    text-align: left;
    flex: 1 1 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    position: relative;
    z-index: 0;
}

.adt-section .adt-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(131deg, #544FF8 70.42%, #2EB6AE 102.7%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
    border-radius: 12px;
}

.adt-section .adt-card:hover::before {
    opacity: 1;
}

.adt-section .adt-card-icon {
    margin-bottom: 10px;
}

.adt-section .adt-card-icon img {
    height: 44px;
    width: 44px;
    transition: filter 0.3s ease-in-out;
}

.adt-section .adt-card-content {
    flex-grow: 1;
    margin-bottom: 22px;

}
.adt-section .adt-card:hover .adt-card-icon img,
.adt-section .adt-card:hover .adt-card-content h3,
.adt-section .adt-card:hover .adt-card-content p,
.adt-section .adt-card:hover .adt-card-link {
    color: #fff; 
}

.adt-section .adt-card-content h3 {
    color: #1A1A1A;
    font-size: 23px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; 
    margin-bottom: 10px;
    transition: color 0.3s ease-in-out;
}

.adt-section .adt-card-content p {
    color: #4D4D4D;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 24px !important; 
    margin-bottom: 0;
    transition: color 0.3s ease-in-out;
}

.adt-section .adt-card-link {
     margin-left: auto; 
   
   
}
.adt-section .adt-card-link img {
    width: 32px;
    height: 32px;
    transition: filter 0.3s ease-in-out;
}

.adt-section .adt-card:hover .adt-card-icon img ,
.adt-section .adt-card:hover .adt-card-link img{
    filter: brightness(0) invert(1);
}



/* Responsive Styles */
@media (max-width: 991.98px) {
    .adt-section {
        padding: 80px 0;
    }

    .adt-section .adt-card {
        flex: 1 1 calc(50% - 30px);
        max-width: calc(50% - 30px);
    }
    .adt-section .adt-header h2 {
        font-size: 38px;
    }
    .adt-section .adt-card-content h3 {
     font-size: 22px;
    }
}

@media (max-width: 767.98px) {
    .adt-section .adt-section {
        padding: 60px 0;
    }
    .adt-section .adt-header h2 {
        font-size: 34px;
    }

   .adt-section .adt-card-content h3 {
     font-size: 20px;
    }
    .adt-section .adt-card-content p {
        font-size: 16px !important;
    }

    .adt-section .adt-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
