* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
}

/* Menü Çubuğu */

/* Genel Header Stili */
header {
    background-color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Navigasyon Stili */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* Logo Stili */
.logo {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Navigasyon Bağlantıları */
.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ddd;
}

/* Mobil Menü İkonu */
.menu-icon {
    display: none;
    cursor: pointer;
    color: white;
    flex-direction: column;
    gap: 5px;
}

.menu-icon div {
    width: 26px;
    height: 3px;
    background-color: white;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Responsive Tasarım */
@media screen and (max-width: 768px) {
    /* Menü İkonunu Göster */
    .menu-icon {
        display: flex;
    }

    /* Mobil Navigasyon */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 15px;
        text-align: center;
        transition: all 0.3s ease-in-out;
    }

    /* Açık Menü Durumu */
    .nav-links.active {
        display: flex;
    }

    /* Mobil Menü Bağlantıları */
    .nav-links a {
        font-size: 1rem;
        padding: 12px 0;
        display: block;
        transition: background 0.3s ease;
    }

    .nav-links a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
}

/*anasayfa*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url(resimler/arkaplan1.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 100px 20px 40px 20px;
    font-family: Arial, sans-serif;
}

.hero-content {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    transition: all 0.3s ease;
    font-weight: 400;
}

.profile-image {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 4px solid white;
    margin: 0 auto 2.5rem auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    background: #fff;
    transition: all 0.3s ease;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    transition: all 0.3s ease;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    font-weight: 300;
}


@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
        font-weight: 300;
    }

    .hero-content p {
        font-size: 1.1rem;
        font-weight: 300;
    }

    .profile-image {
        width: 180px;
        height: 180px;
    }
}


.redirect-btn {
    display: inline-block;
    background-color: #2c3e50;
    color: white;
    padding: 18px 36px;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.redirect-btn:hover {
    background-color: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-color: white;
}

.about {
    padding: 5rem 2rem;
    background-color: #f8f8f8;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.2;
}


.about .short-text {
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-height: none;
    overflow: visible;
    text-overflow: unset;
    padding-bottom: 10px;
    transition: all 0.3s ease;
}


.about .short-text:hover {
    max-height: 300px;
    overflow: visible;
    text-overflow: unset;
}


@media (max-width: 768px) {
    .about {
        padding: 2rem 1.5rem;
    }

    .about h2 {
        font-size: 2rem;
    }

    .about .short-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}


/* hizmetler*/
.services {
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    color: #333;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 3.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
}

.service-card {
    padding: 2.5rem;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
    transition: color 0.3s ease;
}

.service-card:hover i {
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #222;
    text-align: center;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    width: 50%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-content img {
    width: 100%;
    height: auto;
    margin-top: 1rem;
    border-radius: 10px;
}


@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .service-card i {
        font-size: 2rem;
    }

    .modal-content {
        width: 90%;
        padding: 1.5rem;
    }
}


@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .service-card {
        padding: 1rem;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.8rem;
    }
}

/* Galleri */


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 15px;
    padding: 20px;
}


.section-title {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 2rem;
}


.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    background-color: #f4f4f4;
}


.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}


.gallery-item:hover img {
    transform: scale(1.1);
}


.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}


.gallery-item:hover::after {
    opacity: 1;
}


@media screen and (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
        padding: 10px;
    }


    .gallery-item img {
        height: 150px;
        object-fit: cover;
    }


    .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}


@media screen and (max-width: 480px) {

  
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 8px;
        padding: 8px;
    }


    .gallery-item img {
        height: 120px;
        object-fit: cover;
    }


    .section-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }


    .gallery-item::after {
        padding: 3px 6px;
        font-size: 12px;
    }
}

/*iletişim*/

.contact {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.contact-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    min-width: 140px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-card i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .contact {
        padding: 3rem 1rem;
    }
    
    .contact-card {
        padding: 1rem;
    }
    
    .contact-card i {
        font-size: 1.4rem;
    }
}

/* Sosyal medya bölümü */
.social-media {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.social-media .section-title {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}


.social-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.social-media-card {
    background-color: #fff;
    width: 100%;
    max-width: 250px;
    min-height: 350px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.social-media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* İkonlar */
.social-media-card i {
    font-size: 50px;
    color: #333;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

/* Başlık */
.social-media-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

/* Açıklama */
.social-media-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Takipçi Sayısı */
.social-media-card .followers {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
}

.social-media-card .followers-count {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.social-media-card .followers-text {
    font-size: 14px;
    color: #666;
}

/* Hover Renk Değişiklikleri */
.social-media-card:hover i.fab.fa-tiktok {
    color: #69C9D0;
}

.social-media-card:hover i.fab.fa-instagram {
    color: #E4405F;
}

.social-media-card:hover i.fab.fa-facebook {
    color: #1877F2;
}

/* Mobil Uyum (Tabletlere Göre Ayarlandı) */
@media screen and (max-width: 768px) {
    .social-media-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .social-media-card {
        min-height: 320px;
        padding: 15px;
    }
    
    .social-media-card i {
        font-size: 40px;
    }
    
    .social-media-card h3 {
        font-size: 20px;
    }
}


@media screen and (max-width: 480px) {
    .social-media .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .social-media-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px;
    }
    
    .social-media-card {
        min-height: 280px;
        padding: 12px;
    }
    
    .social-media-card i {
        font-size: 35px;
    }
    
    .social-media-card h3 {
        font-size: 18px;
    }
    
    .social-media-card p {
        font-size: 12px;
    }
    
    .social-media-card .followers-count {
        font-size: 20px;
    }
    
    .social-media-card .followers-text {
        font-size: 12px;
    }
}

/* Footer */
.footer {
    background-color: #1a252f;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.social-icons a {
    color: white;
    margin: 0 15px;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #4CAF50;
}

.footer-links {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4CAF50;
}

.copyright {
    font-size: 14px;
    opacity: 0.7;
}

/* Mobil cihazlar için */
@media (max-width: 768px) {
    .nav {
        position: relative;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background-color: var(--primary-color);
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        padding: 1rem;
        display: block;
    }

    .menu-icon {
        display: block;
    }
}

.sapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 2rem;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* FAQ bölümü */
.faq {
    padding: 3rem 2rem;
    max-width: 100%;
    margin: 2rem auto;
    background-color: #f1f1f1;
    border-radius: 8px;
}

.faq-item {
    margin-bottom: 2rem;
    background-color: #f5f6fa;
    padding: 2rem;
    border-radius: 8px;
    box-sizing: border-box;
    width: 100%;
    transition: transform 0.3s ease;
}


.faq-item:hover {
    transform: translateY(-5px);
}

.faq-question {
    width: 100%;
    background-color: #007bff;
    color: white;
    padding: 1.5rem;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.faq-question:hover {
    background-color: #4c9bf0;
}

.faq-answer {
    display: none;
    padding: 1.5rem;
    background: #f5f6fa;
    border-radius: 4px;
    margin-top: 1rem;
    box-sizing: border-box;
}

/* Tablet boyutu */
@media (max-width: 768px) {
    .faq {
        padding: 2rem 1rem;
    }

    .faq-item {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

/* Mobil boyutu */
@media (max-width: 480px) {
    .faq {
        padding: 1.5rem 1rem;
    }

    .faq-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 1rem;
    }
}


/* VİDEO GALERİ*/
.video-gallery {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}


.video-gallery h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}


.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}


.video-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}


.video-item video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}


.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 12px;
}


.video-item p {
    margin-top: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #444;
    transition: color 0.3s ease;
}


.video-item:hover p {
    color: var(--secondary-color);
}


.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}


.play-button::after {
    content: "▶";
    color: var(--primary-color);
    font-size: 24px;
    margin-left: 4px;
}


.video-item:hover .play-button {
    opacity: 1;
}


@media screen and (max-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .video-gallery {
        padding: 3rem 1rem;
    }

    .video-gallery h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .video-item p {
        font-size: 1rem;
    }

    .play-button {
        width: 40px;
        height: 40px;
    }

    .play-button::after {
        font-size: 18px;
    }
}


@media screen and (max-width: 480px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .video-gallery {
        padding: 2rem 0.8rem;
    }

    .video-gallery h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .video-item p {
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }

    .play-button {
        width: 30px;
        height: 30px;
    }

    .play-button::after {
        font-size: 14px;
    }
}


.refarans {
    padding: 3rem 1rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}


.refarans-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}


.refarans-slider::-webkit-scrollbar {
    display: none;
}

/* Referans kartı */
.reference-kartı {
    min-width: 100%;
    padding: 2rem;
    background: #f5f6fa;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}


.reference-kartı:hover {
    transform: translateY(-5px);
}

.reference-kartı p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.reference-kartı h4 {
    font-weight: bold;
    color: var(--primary-color);
}


.reference-logos {
    padding: 4rem 1rem;
    text-align: center;
    background: #f8f8f8;
}

.reference-logos h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}


@media (max-width: 768px) {
    .reference {
        padding: 2rem 1rem;
    }

    .reference-card {
        padding: 1.5rem;
    }

    .reference-card p {
        font-size: 1rem;
    }

    .reference-logos {
        padding: 3rem 1rem;
    }

    .reference-logos h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
}


@media (max-width: 480px) {
    .reference {
        padding: 1.5rem 0.5rem;
    }

    .reference-card {
        padding: 1rem;
    }

    .reference-logos {
        padding: 2rem 0.5rem;
    }

    .reference-logos h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo-grid img {
    width: 160px;
    height: auto;
    filter: grayscale(100%);
    transition: transform 0.3s ease, filter 0.3s ease-in-out, opacity 0.3s ease;
    opacity: 0.7;
}

.logo-grid img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
    opacity: 1;
}



.about-us {
    background-color: #f8f8f8;
    padding: 50px 0;
}


.about-us .container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}


.about-us h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}


.about-us .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}


.about-us .stats {
    display: flex;
    justify-content: space-between;
    flex: 1;
    flex-wrap: wrap;
}


.about-us .stat {
    background-color: #fff;
    padding: 30px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: center;
    transition: transform 0.3s ease;
}


.about-us .stat:hover {
    transform: translateY(-5px);
}


.about-us .stat h3 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #000000;
    transition: all 1s ease-out;
}


.about-us .stat p {
    font-size: 18px;
    color: #555;
}


@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-us .stat h3 {
    animation: countUp 1s forwards;
}


@media (max-width: 1024px) {
    .about-us .container {
        width: 90%;
    }

    .about-us h2 {
        font-size: 32px;
    }

    .about-us .stats {
        justify-content: center;
        gap: 10px;
    }

    .about-us .stat {
        width: calc(50% - 20px);
        margin: 5px;
        padding: 20px;
    }

    .about-us .stat h3 {
        font-size: 36px;
    }

    .about-us .stat p {
        font-size: 16px;
    }
}
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    font-size: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    z-index: 1000; /* Butonu içeriğin önüne getirir */
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-button i {
    color: white;
}

.whatsapp-button:active {
    transform: scale(0.9);
}



@media (max-width: 768px) {
    .about-us .container {
        width: 95%;
    }

    .about-us h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .about-us .content {
        margin: 0 -5px;
    }

    .about-us .stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
        padding: 0 5px;
    }

    .about-us .stat {
        width: 100%;
        margin: 0;
        padding: 15px;
    }

    .about-us .stat h3 {
        font-size: 28px;
    }

    .about-us .stat p {
        font-size: 14px;
    }
}


@media (max-width: 480px) {
    .about-us .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .about-us .stat {
        padding: 10px;
    }

    .about-us .stat h3 {
        font-size: 24px;
    }

    .about-us .stat p {
        font-size: 12px;
    }
}

/*muzik*/
.muzik {
    background-color: #ffffff;
    padding: 50px 0;
}

.muzik .container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.muzik h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.muzik .music-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.muzik .music-info {
    flex: 1;
    padding: 20px;
    text-align: left;
}

.muzik .music-info h3 {
    font-size: 30px;
    color: #000000;
}

.muzik .music-info p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.muzik .music-player {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.muzik audio {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


@media (max-width: 1024px) {
    .muzik .container {
        width: 85%;
    }

    .muzik h2 {
        font-size: 32px;
    }

    .muzik .music-info h3 {
        font-size: 26px;
    }

    .muzik .music-info p {
        font-size: 17px;
    }
}


@media (max-width: 768px) {
    .muzik .container {
        width: 90%;
    }

    .muzik h2 {
        font-size: 28px;
    }

    .muzik .music-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .muzik .music-info {
        text-align: center;
        padding: 20px;
    }

    .muzik .music-info h3 {
        font-size: 24px;
    }

    .muzik .music-info p {
        font-size: 16px;
    }

    .muzik .music-player {
        padding: 20px;
    }

    .muzik audio {
        max-width: 100%;
    }
}


@media (min-width: 1025px) {
    .muzik .container {
        width: 80%;
    }

    .muzik h2 {
        font-size: 36px;
    }

    .muzik .music-info h3 {
        font-size: 30px;
    }

    .muzik .music-info p {
        font-size: 18px;
    }
}