.awesome-apps {
    background: linear-gradient(135deg, #7b1fa2, #1e88e5);
    padding: 80px 0;
    color: white;
    text-align: center;
}


.content {
    flex: 1;
    text-align: left;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.section-title span {
    color: #26c6da;
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.cta-button {
    background: linear-gradient(45deg, #ff4081, #ff9100);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(45deg, #ff9100, #ff4081);
    transform: scale(1.05);
}

.image-container {
    flex: 1;
    text-align: right;
}

.app-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}
.typically-responsive {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    overflow: hidden;
}

.typically-responsive .heading-block h2 {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(45deg, #fff, #ddd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInDown 1s ease-in-out;
}

.typically-responsive .heading-block span {
    font-size: 1.4rem;
    color: #e0e0e0;
    display: block;
    margin-bottom: 20px;
}

.typically-responsive p {
    font-size: 1.2rem;
    color: #f5f5f5;
    line-height: 1.8;
    opacity: 0.9;
}

.typically-responsive .responsive-image {
    max-width: 100%;
    transform: rotateY(15deg) rotateX(10deg) scale(1.05);
    transition: transform 0.5s ease-in-out;
}

.typically-responsive .responsive-image:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.1);
}

.typically-responsive .button {
    display: inline-block;
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 15px rgba(255, 126, 95, 0.4);
}

.typically-responsive .button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 126, 95, 0.6);
}

.angled-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.icon-box:hover {
    transform: scale(1.2);
}
.card {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #e14eca, #6a11cb);
    color: white;
    transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Hover Efekti */
.card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    filter: brightness(1.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}

/* Kart İçeriği */
.card h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card p {
    font-size: 1rem;
    opacity: 0.85;
    font-weight: 500;
}

/* Dekoratif Işık Efekti */
.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 10%, rgba(255, 255, 255, 0) 70%);
    transition: opacity 0.5s, transform 0.5s;
    opacity: 0;
}

.card:hover::before {
    opacity: 1;
    top: -25%;
    left: -25%;
    transform: scale(1.1);
}

/* Animasyonlu Border Efekti */
.card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.card:hover::after {
    opacity: 1;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Buton ve İkon Efektleri */
.card a i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    font-size: 1.4rem;
}

.card a i:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.9);
    color: #8a2be2;
}