.aide-card-banner {
    border-radius: 12px;
    overflow: hidden;
    margin: 120px 0;
}

.aide-card-banner__inner {
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.aide-card-banner__heading {
    margin: 0 0 20px 0;
    font-weight: 400;
    line-height: 1.2;
}

.aide-card-banner__description {
    font-size: 16px;
    line-height: normal;
    margin: 0;
}

.aide-card-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.aide-card-banner__btn svg {
    transition: transform 0.3s ease;
}

.aide-card-banner__btn:hover svg {
    transform: translate(2px, -2px);
}

/* Background Image Layout (Centered) */
.aide-card-banner--image {
    background-color: #000B3B; /* Fallback color */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    text-align: center;
}

.aide-card-banner--image .aide-card-banner__inner {
    align-items: center;
    padding: 64px 48px;
}

.aide-card-banner--image .aide-card-banner__content {
    max-width: 800px;
    margin: 0 auto;
}

.aide-card-banner--image .aide-card-banner__heading {
    font-size: 28px;
    line-height: 42px;
    color: #ffffff;
}

.aide-card-banner--image .aide-card-banner__description {
    color: #E2E8F0;
}

.aide-card-banner--image .aide-card-banner__btn {
    background-color: #ffffff;
    color: #000000;
}

.aide-card-banner--image .aide-card-banner__btn:hover {
    background: linear-gradient(91deg, #544FF8 69.59%, #2EB6AE 99.41%);
    color: #fff;
}

/* Background Color Layout (Left-Right) */
.aide-card-banner--color {
    background: linear-gradient(99deg, rgba(84, 79, 248, 0.20) 29.6%, rgba(255, 255, 255, 0.20) 62.54%, rgba(46, 182, 174, 0.20) 109.88%), #F5F5F5;
    border: 1px solid #EEE;
    color: #000000;
}

.aide-card-banner--color .aide-card-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.aide-card-banner--color .aide-card-banner__content {
    flex: 1;
    max-width: 700px;
}

.aide-card-banner--color .aide-card-banner__heading {
color: #000;
font-size: 23px;
font-style: normal;
font-weight: 600;
line-height: 34px; /* 147.826% */
}

.aide-card-banner--color .aide-card-banner__description {
color: #000;
font-size: 16px;
font-weight: 400;
line-height: normal;
}

.aide-card-banner--color .aide-card-banner__action {
    flex-shrink: 0;
}

.aide-card-banner--color .aide-card-banner__btn {
    background-color: #222222;
    color: #ffffff;
}

.aide-card-banner--color .aide-card-banner__btn:hover {
    background: linear-gradient(91deg, #544FF8 69.59%, #2EB6AE 99.41%);
}

/* Responsive Styles */
@media (max-width: 1199.98px) { 
    /* end 1199.98px*/
    .aide-card-banner--image .aide-card-banner__heading {font-size: 26px}
    .aide-card-banner--color .aide-card-banner__heading{font-size:22px}
 }
@media (max-width: 767.98px) { 
  .aide-card-banner--image .aide-card-banner__heading {font-size: 24px;line-height: 32px}
  .aide-card-banner__btn {font-size: 14px}
  .aide-card-banner--color .aide-card-banner__heading{font-size:20px}
  .aide-card-banner--color .aide-card-banner__description {font-size: 14px}
  .aide-card-banner--color .aide-card-banner__inner {flex-wrap: wrap;text-align: center}
  .aide-card-banner--color .aide-card-banner__content {flex: 1;max-width: 100%}
  .aide-card-banner--color .aide-card-banner__content {flex: 1;max-width: 100%}
 }

