.banner
{
    overflow: hidden;
    height: 70vh;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 73%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
body
{
      background: #f1f0f0;
}
:root{
    --AsnNavPadding: 2rem;
}

.thbtn{
padding: 20px 10px;
    z-index: 2;
    border-radius: 42px;
    background: linear-gradient(45deg, #18ab7659, #154f8054);
    font-family: 'Inter';
    color: white;
    border: 0;
    backdrop-filter: blur(13px);
    transition: .30s;
}

.thbtn:hover{
    transform: scale(1.1);
    animation: thbtnani 1s linear infinite;
}

@keyframes thbtnani{
    from{
           box-shadow: 0px 0 18px 0.1rem #18ab76;
           
    }
    to{
           box-shadow: 0px 0 18px 0.2rem #1897ab;
    }
}




.thbtn a{
    color: white;
    text-decoration: none;
}
.banner .banner-grad
{
       background-image: linear-gradient(349deg, #040404, #4eedd070);
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
}

.banner img{
    width: 100%;
    height: 100%;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
}

.banner .banner-title{
        color: white;
    z-index: 1;
    position: relative;
}

/* KARTLARI YAN YANA DİZMEK İÇİN KONTEYNER */
.card-container {
    display: grid;
    /* Otomatik olarak sığdır, en az 300px genişlik olsun */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 24px; /* Kartlar arası boşluk */
    padding: 20px;
    justify-items: center; /* Kartları ortala */
       transform: translateY(-10%);
}

/* KART YAPISI (Flexbox ekleyerek butonları en alta itiyoruz) */
.card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 24px;
    width: 100%; /* Konteyner içinde tam genişlik */
    max-width: 380px; /* Maksimum genişlik sınırı */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border: 1px solid #eef2f5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column; /* İçeriği dikey hizala */
    justify-content: space-between; /* İçeriği yay */
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: #b3d7ff; /* Hoverda hafif mavi kenarlık */
}

/* BAŞLIK */
.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 12px;
    min-height: 50px; /* Başlıklar farklı uzunlukta olsa da hizalı dursun */
    display: flex;
    align-items: center;
}

/* LİSTE */
.card-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.card-content ul li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid #f9f9f9;
    display: flex;
    align-items: flex-start; /* Çok satırlı maddelerde ikon yukarıda kalsın */
}

.card-content ul li::before {
    content: "▸"; /* Veya ✔ işareti */
    color: #007bff;
    margin-right: 10px;
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
}

/* BUTON / LINK STİLİ */
.asn-btn {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    text-decoration: none; /* Link alt çizgisini kaldır */
    transition: all 0.3s ease;
    box-sizing: border-box; /* Padding dahil genişlik hesapla */
}

/* Primary Outline Stili */
.asn-btn.primary.outline {
    background-color: transparent;
    border: 2px solid #007bff;
    color: #007bff;
}

.asn-btn.primary.outline:hover {
    background-color: #007bff;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

/* Butonu kartın en altına itmek için yardımcı sınıf */
.mt-auto {
    margin-top: auto;
}


.footer{
    background: #e7e7e7;
    padding: 6rem;
}
.footer-links{
    font-family: 'Inter';
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-links a{
    color: #5d5d5d;
    text-decoration: none;
    transition: .12s;
}

.footer-links a:hover{
    color :black;
    text-decoration: underline;
}

.asn-nav-link{
    position: relative;
}
.asn-nav-link::before
{
    content: ' ';
    width: 100%;
    height: 2px;
    position: absolute;
    background: var(--PrimaryColor);
    bottom: -2px;
    transform: scale(0);
    transition: .23s;
}
.asn-nav-link:hover::before
{
    transform: scale(1);

}

.asn-navbar.scrolled{
  
       border-bottom: 1px solid #0000002b;
    backdrop-filter: blur(8px);
}

.t-hero
{
       background: linear-gradient(330deg, #25ebb0, #42149b);
height: 30vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 14rem;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 100% 53%, 0 100%);
}


.about-box{
        border: 1px solid;
    background: white;
    padding: 2rem;
    transform: translateY(-16vh);
    border-radius: 6px;
    border-color: #d7d7d7;
    gap: 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.about-card{
    background: #fdfdfd;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #a3a3a3;
    border-left: 4px solid #a3a3a3;
    box-shadow: 0px 0px 6px .12rem #1a1a1a1f;
    transition: .20s ease;
}

.about-card:hover{
    border-left: 4px solid #7c3aed;
    transform: translateY(-2px);
}


.about-card a 
{
        text-decoration: none;
    color: #434343;
transition: .10s;


}
.about-card a:hover
{
        text-decoration: none;
    color: #0a1688;



}


.asn-navlogo
{
        width: 18%;
}
@media (max-width:768px)
{
    .asn-navlogo {
    width: 70%;
}
        .asn-navlogo > * {
        width: 50%;
        height: 50%;
    }

    .banner{
        padding: 2rem;
    }

    .card-container{
        transform: none !important;
    }

    .footer{
            padding: 1rem;
    }
}