@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    box-sizing: border-box;
}

body {
    width: 100%;
    padding: 0;
    margin: 0;
    background: linear-gradient(50deg,#05052f,#05052f,#05052f);
}

.df-container {
    display: flex;
    justify-content: center;
}

.yontem {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 145px;
    height: 45px;
    background: linear-gradient(50deg, #05052f, #0c0c53, #18187a);
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    color: white;
    text-decoration: none;
}

.contacts_container{
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    margin-bottom: 40px;
}

.contact-item{
    display: flex;
}

.glitch-container{
    display: flex;
    justify-content: center;
}

.social-title{
    color: #fff;
    text-align: center;
}

.contact-card{
    margin-bottom: 24px;
}

.contact-title{
    color: #fff;
    text-align: center;
}

.socials-items{
    display: flex;
    justify-content: center;
}

.contact-card {
    width: 100%;
    margin: 1px 5px;
    max-height: max-content;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    background: linear-gradient(50deg, #05052f, #0c0c53, #18187a);
    border: 4px solid #e7e7e729;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(20, 30, 81, 0.12);
}

.card-header {
    background: linear-gradient(50deg, #05052f, #0c0c53, #18187a);
    color: white;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 45px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.header-icon-svg {
    width: 16px;
    height: 16px;
    fill: white;
}

.card-body {
    padding: 14px 10px 14px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.lisans-sertifika img{
    object-fit: contain;
}

.mail-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mail-icon-svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
    flex-shrink: 0;
}

.mail-address {
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    transition: color 0.2s ease;
}

.mail-address:hover {
    color: #e3e3e3;
}

.copy-btn {
    background: linear-gradient(135deg, #0a0a41, #5252e1);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: linear-gradient(135deg, #0a0a41, #5252e1);
    transform: scale(1.1);
}

.copy-btn:active {
    transform: scale(0.95);
}

.copy-icon-svg {
    width: 16px;
    height: 16px;
    fill: white;
}


.notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: linear-gradient(135deg, #141e51, #1a2866);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s ease;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(20, 30, 81, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.notification.copied .copy-indicator-svg {
    color: #4caf50;
}

.notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}


@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .contact-card {
        width: 100%;
        max-width: 320px;
    }
}

@keyframes fadeInCard {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.contact-card {
    animation: fadeInCard 0.5s cubic-bezier(0.215, 0.610, 0.355, 1) backwards;
}
.contact-card:nth-child(2) { animation-delay: 0.1s; }
.contact-card:nth-child(3) { animation-delay: 0.2s; }



.glitch-text {
    font-size: 2rem;
    font-weight: bold;
    position: relative;
    color: #fff;
}

.yontem{
    justify-content: space-evenly;
}

.ynt-img img{
    width: 15px;
    height: 15px;
    margin-right: 5px;
}