    /* Reset CSS Start*/
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        scroll-behavior: smooth;
        text-decoration: none;
        border: none;
        outline: none;
        font-family: 'Poppins', sans-serif;
    }
    
    :root{
        --bg-color: #080808;
        --second-bg-color: #131313;
        --text-color: #fff;
        --main-color: #0ef;
    }
    
    html{
        font-size: 62.5%;
        overflow-x: hidden;
    }
    
    body{
        background: var(--bg-color);
        color: var(--text-color);
        padding-bottom: 8rem; /* Footer yüksekliği + ekstra boşluk */
    }
    
    section{
        min-height: 100vh;
        padding: 10rem 9% 2rem;
    }
    
    /*Header Start*/
    .header{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 2rem 9%;
        background: var(--bg-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 100;
    }
    
    .logo{
        font-size: 2.5rem;
        color: var(--text-color);
        font-weight: 600;
        cursor: pointer;
        transition: .5s ease;
    }
    
    .logo:hover{
        color: var(--main-color);
        text-shadow: 0 0 1rem var(--main-color);
    }
    
    .navbar a{
        position: relative;
        font-size: 1.7rem;
        color: var(--text-color);
        margin-left: 4rem;
        transition: .3s;
    }
    
    .navbar a::before{
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--main-color);
        transition: width 0.3s ease;
    }
    
    .navbar a:hover::before{
        width: 100%;
    }
    
    .navbar a:hover,
    .navbar a.active{
        color: var(--main-color);
        text-shadow: 0 0 0.5rem var(--main-color);
    }
    
    #menu-icon{
        font-size: 3.6rem;
        color: var(--text-color);
        display: none;
        cursor: pointer;
        transition: .3s;
    }
    
    #menu-icon:hover{
        color: var(--main-color);
        transform: rotate(180deg);
    }
    
    /* Anasayfa Start */
    .anasayfa{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }
    
    .anasayfa-content{
        max-width: 60rem;
    }
    
    .anasayfa-content h1{
        font-size: 4.5rem;
        font-weight: 700;
        line-height: 1.3;
    }
    
    .anasayfa-content h3{
        font-size: 2.5rem;
        font-weight: 700;
        white-space: nowrap;
        display: inline-block;
    }
    
    .anasayfa-content h3 .static-text{
        color: var(--text-color);
    }
    
    .anasayfa-content h3 span.multiple-text{
        color: var(--main-color);
        font-weight: 700;
    }
    
    .anasayfa-content p{
        font-size: 1.25rem;
        margin: 2rem 0 4rem;
    }
    
    .anasayfa-content p .platform-link {
        color: var(--main-color);
        text-decoration: none;
        transition: 0.3s;
    }
    
    .anasayfa-content p .platform-link:hover {
        text-shadow: 0 0 0.5rem var(--main-color);
    }
    
    .social-button-container{
        display: flex;
        align-items: center;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .social-icons{
        display: flex;
        align-items: center;
    }
    
    .social-icons a{
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 4rem;
        height: 4rem;
        background: transparent;
        border: .2rem solid var(--main-color);
        border-radius: 50%;
        font-size: 2rem;
        color: var(--main-color);
        transition: .5s ease;
    }
    
    .social-icons a:hover{
        background: var(--main-color);
        color: var(--second-bg-color);
        box-shadow: 0 0 1rem var(--main-color);
    }
    
    .btn{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 1rem 2.8rem;
        height: 4rem;
        background: var(--main-color);
        border-radius: 4rem;
        box-shadow: 0 0 1rem var(--main-color);
        font-size: 1.6rem;
        color: var(--second-bg-color);
        letter-spacing: .1rem;
        font-weight: 600;
        position: relative;
        overflow: hidden;
        z-index: 1;
        transition: all 0.5s ease;
    }
    
    .btn::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background: var(--text-color);
        z-index: -1;
        transition: width 0.5s ease;
    }
    
    .btn:hover{
        color: var(--main-color);
        box-shadow: 0 0 2rem var(--main-color);
        transform: translateY(-3px);
    }
    
    .btn:hover::before{
        width: 100%;
    }
    
    .home-img {
        position: relative;
        right: -50px;
    }

    .home-img img {
        width: 30vw;
        max-width: 320px;
        border-radius: 50%;
        box-shadow: 0 0 25px var(--main-color);
        transition: 0.3s ease-in-out;
    }

    @media (max-width: 991px) {
        .header {
            padding: 2rem 3%;
        }

        section {
            padding: 10rem 3% 2rem;
        }

        .anasayfa {
            flex-direction: column;
            padding-top: 7rem;
        }

        .anasayfa-content {
            text-align: center;
            order: 2;
            margin-top: 2rem;
        }

        .home-img {
            order: 1;
            right: 0;
            margin: 0 auto;
            padding-top: 1rem;
        }

        .home-img img {
            width: 280px;
            margin: 0 auto;
            display: block;
        }
    }

    @media (max-width: 768px) {
        .home-img {
            padding-top: 0.5rem;
        }

        .home-img img {
            width: 240px;
        }

        .anasayfa {
            padding-top: 6rem;
        }

        .social-button-container {
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 1.5rem;
            margin: 2.5rem auto;
            width: 100%;
        }

        .social-icons {
            justify-content: center;
        }

        .social-icons a {
            width: 4.5rem;
            height: 4.5rem;
            font-size: 2.2rem;
        }

        .btn {
            width: auto;
            min-width: 200px;
            padding: 1.2rem 3rem;
            font-size: 1.7rem;
            text-align: center;
        }
    }

    @media (max-width: 450px){
        .anasayfa-content h1 {
            font-size: 3.5rem;
        }

        .anasayfa-content h3 {
            font-size: 2.2rem;
        }
    }

    @media (max-width: 320px){
        .anasayfa-content h1 {
            font-size: 3rem;
        }

        .anasayfa-content h3 {
            font-size: 1.8rem;
        }

        .anasayfa-content h3 span.multiple-text {
            font-size: 1.8rem;
        }
    }

    @media (max-width: 320px) {
        .home-img img {
            width: 180px;
        }
    }

    @media (max-width: 320px) {
        .slide .content {
            padding: 1.2rem;
        }
        
        .content h2 {
            font-size: 1.6rem;
            margin-bottom: 0.4rem;
        }
        
        .content .title {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
        }
        
        .content p {
            font-size: 1rem;
            line-height: 1.5;
            margin: 0;
            opacity: 0.9;
        }
    }

    /* Deneyim Sayfası */
    .deneyim{
        min-height: 100vh;
        padding: 5rem 9% 2rem;
        background: #131313;
    }
    
    .deneyim .heading{
        position: relative;
        font-size: 4.5rem;
        margin-bottom: 6rem;
        text-align: center;
        color: #fff;
        width: 100%;
        letter-spacing: 2px;
        font-weight: 600;
    }
    
    .deneyim .heading span{
        background: linear-gradient(45deg, #fff, var(--main-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 0 15px rgba(0, 238, 255, 0.3);
    }
    
    .timeline-items{
        max-width: 1200px;
        margin: auto;
        display: flex;
        flex-wrap: wrap;
        position: relative;
    }
    
    .timeline-items::before{
        content: '';
        position: absolute;
        width: 2px;
        height: 100%;
        background: var(--main-color);
        left: calc(50% - 1px);
        box-shadow: 0 0 0.5rem var(--main-color);
        opacity: 0.7;
    }
    
    .timeline-item{
        margin-bottom: 40px;
        width: 100%;
        position: relative;
    }
    
    .timeline-item:nth-child(odd){
        padding-right: calc(50% + 30px);
    }
    
    .timeline-item:nth-child(even){
        padding-left: calc(50% + 30px);
    }
    
    .timeline-dot{
        height: 12px;
        width: 12px;
        background: var(--main-color);
        position: absolute;
        left: calc(50% - 6px);
        border-radius: 50%;
        box-shadow: 0 0 0.3rem var(--main-color);
    }
    
    .timeline-date{
        font-size: 2rem;
        color: var(--main-color);
        margin: 0 0 1rem;
        font-weight: 600;
        text-shadow: 0 0 0.3rem var(--main-color);
    }
    
    .timeline-content{
        background: rgba(14, 14, 14, 0.95);
        padding: 2rem;
        border-radius: 15px;
        border: 1px solid var(--main-color);
        box-shadow: 0 0 20px rgba(0, 238, 255, 0.1);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }
    
    .timeline-content:hover{
        transform: translateY(-5px);
        box-shadow: 0 0 30px rgba(0, 238, 255, 0.2);
    }
    
    .timeline-content h3{
        font-size: 2.4rem;
        color: var(--main-color);
        margin-bottom: 1rem;
    }
    
    .timeline-content h5{
        font-size: 1.8rem;
        color: #fff;
        margin-bottom: 1.5rem;
        opacity: 0.9;
    }
    
    .timeline-content li{
        font-size: 1.6rem;
        color: #ccc;
        margin-bottom: 1rem;
        line-height: 2.4rem;
        position: relative;
    }
    
    .timeline-content li::before{
        display: none;
    }
    
    /* Gelişim Platformu */
    .AnalizHub{
        min-height: 100vh;
        padding: 5rem 9% 2rem;
        background: var(--bg-color);
    }
    
    .AnalizHub .heading{
        text-align: center;
        font-size: 4.5rem;
        margin-bottom: 6rem;
    }
    
    .AnalizHub .heading span{
        background: linear-gradient(45deg, #fff, var(--main-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 0 15px rgba(0, 238, 255, 0.3);
    }
    
    .AnalizHub-container{
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        align-items: stretch;
        gap: 2.5rem;
        padding: 0 3rem;
    }
    
    .AnalizHub-box{
        position: relative;
        background: rgba(17, 17, 17, 0.95);
        padding: 3rem 2rem;
        border-radius: 2rem;
        border: 1px solid var(--main-color);
        box-shadow: 0 0 20px rgba(0, 238, 255, 0.1);
        backdrop-filter: blur(10px);
        z-index: 1;
        overflow: hidden;
        transition: all 0.5s ease;
        text-decoration: none;
    }
    
    .AnalizHub-box:hover{
        transform: translateY(-1rem);
        box-shadow: 0 0 30px rgba(0, 238, 255, 0.2);
    }
    
    .AnalizHub-box::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(120deg, transparent, var(--main-color), transparent);
        transform: translateX(-100%);
        transition: 0.6s;
        z-index: -1;
        opacity: 0.1;
    }
    
    .AnalizHub-box:hover::before{
        transform: translateX(100%);
    }
    
    .AnalizHub-info h4{
        font-size: 2.6rem;
        color: var(--main-color);
        margin-bottom: 2rem;
        text-shadow: 0 0 10px rgba(0, 238, 255, 0.3);
    }
    
    .AnalizHub-info p{
        font-size: 1.6rem;
        color: #fff;
        margin-bottom: 1.5rem;
        line-height: 2.5rem;
        opacity: 0.8;
    }
    
    /* Responsive */
    @media (max-width: 1200px) {
        .AnalizHub-container {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 991px) {
        .AnalizHub-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .AnalizHub-container {
            grid-template-columns: 1fr;
            padding: 0 3rem;
        }

        .AnalizHub-box {
            flex-direction: row;
            align-items: flex-start;
            padding: 2rem;
            border-radius: 1.5rem;
        }

        .AnalizHub-box .AnalizHub-layer {
            width: 100px;
            height: 100px;
            margin-right: 2rem;
            border-radius: 1rem;
            flex-shrink: 0;
        }

        .AnalizHub-box .AnalizHub-content {
            flex: 1;
            padding: 0;
        }

        .AnalizHub-box h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .AnalizHub-box p {
            font-size: 1.4rem;
            margin: 0.5rem 0;
        }
    }

    @media (max-width: 450px) {
        .AnalizHub-container {
            padding: 0 2rem;
        }

        .AnalizHub-box {
            padding: 1.5rem;
        }

        .AnalizHub-box .AnalizHub-layer {
            width: 80px;
            height: 80px;
            margin-right: 1.5rem;
        }

        .AnalizHub-box h3 {
            font-size: 1.8rem;
        }

        .AnalizHub-box p {
            font-size: 1.3rem;
        }
    }
    
    /* BanaDair Bölümü */
    .BanaDair {
        min-height: 100vh;
        padding: 5rem 9% 2rem;
        background: var(--bg-color);
        position: relative;
    }
    
    .BanaDair::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, rgba(0, 238, 255, 0.05) 0%, transparent 70%);
        pointer-events: none;
    }
    
    .BanaDair .heading {
        text-align: center;
        font-size: 4.5rem;
        margin-bottom: 5rem;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-shadow: 0 0 10px rgba(0, 238, 255, 0.3);
        position: relative;
        display: inline-block;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(45deg, transparent, var(--main-color), transparent);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .BanaDair .heading::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background: var(--main-color);
        box-shadow: 0 0 20px var(--main-color);
    }
    
    .slider-container {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .slider {
        position: relative;
        height: 450px;
    }
    
    .slide {
        display: none;
        height: 100%;
    }
    
    .slide.active {
        display: block;
    }
    
    .slide .content {
        background: rgba(17, 17, 17, 0.8);
        backdrop-filter: blur(20px);
        border-radius: 30px;
        padding: 4rem;
        border: 1px solid rgba(0, 238, 255, 0.2);
        box-shadow: 0 0 30px rgba(0, 238, 255, 0.1);
        height: 100%;
    }
    
    .content h2 {
        font-size: 3.2rem;
        color: var(--main-color);
        margin-bottom: 1rem;
    }
    
    .content .title {
        font-size: 2rem;
        color: #fff;
        margin-bottom: 2rem;
    }
    
    .content p {
        font-size: 1.7rem;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.8;
        font-style: italic;
    }
    
    .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(0, 238, 255, 0.1);
        border: 1px solid rgba(0, 238, 255, 0.3);
        color: var(--main-color);
        font-size: 2.5rem;
        cursor: pointer;
        z-index: 10;
    }
    
    .prev-btn {
        left: -25px;
    }
    
    .next-btn {
        right: -25px;
    }
    
    @media (max-width: 768px) {
        .slide .content {
            padding: 2rem;
        }
        
        .content h2 {
            font-size: 2.5rem;
        }
        
        .content .title {
            font-size: 1.8rem;
        }
        
        .content p {
            font-size: 1.5rem;
        }
        
        .nav-btn {
            width: 40px;
            height: 40px;
            font-size: 2rem;
        }
        
        .prev-btn {
            left: 10px;
        }
        
        .next-btn {
            right: 10px;
        }
    }
    
    @media (max-width: 768px){
        #menu-icon{
            display: block;
        }
    
        .navbar{
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem 3%;
            background: var(--bg-color);
            border-top: .1rem solid rgba(0, 0, 0, .2);
            box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .2);
            display: none;
        }
    
        .navbar.active{
            display: block;
        }
    
        .navbar a{
            display: block;
            font-size: 2rem;
            margin: 3rem 0;
        }
    }
    
    @media (max-width: 450px){
        html{
            font-size: 50%;
        }
    
        .home-img img{
            width: 90vw;
        }
    }
    
    /* BREAKPOINTS */
    @media (max-width: 1200px){
        html{
            font-size: 55%;
        }
    }
    
    @media (max-width: 991px){
        .header{
            padding: 2rem 3%;
        }
    
        section{
            padding: 10rem 3% 2rem;
        }
    
        .anasayfa{
            flex-direction: column;
        }
    
        .anasayfa-content{
            text-align: center;
        }
    
        .home-img img{
            width: 70vw;
            margin-top: 4rem;
        }
    
        .timeline-items::before{
            left: 7px;
        }
        .timeline-item:nth-child(odd){
            padding-right: 0;
            text-align: left;
        }
        .timeline-item:nth-child(odd),
        .timeline-item:nth-child(even){
            padding-left: 37px;
        }
        .timeline-dot{
            left: 0;
        }
    }
    
    /* Bana Dair Görüşler Responsive CSS */
    @media (max-width: 768px) {
        .BanaDair {
            padding: 6rem 3% 2rem;
        }

        .BanaDair .heading {
            font-size: 3.5rem;
            margin-bottom: 3rem;
        }
    }

    @media (max-width: 450px) {
        .BanaDair {
            padding: 4rem 2% 1rem;
        }

        .BanaDair .heading {
            font-size: 2.8rem;
            margin-bottom: 2rem;
        }
    }

    /* Reeder S23 Pro Max için özel düzenleme */
    @media screen and (max-width: 393px) and (min-height: 852px) {
        .BanaDair {
            padding: 3rem 1.5% 1rem;
        }

        .BanaDair .heading {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            word-wrap: break-word;
        }
    }
    
    /* İletişim Bölümü */
    .iletisim {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #1a1a1a;
        padding: 0 20px;
    }
    
    .iletisim .heading {
        color: #fff;
        margin-bottom: 3rem;
        font-size: 3rem;
    }
    
    .contact-container {
        width: 100%;
        max-width: 600px;
        background: #1e1e1e;
        padding: 2rem;
        border-radius: 20px;
        box-shadow: 0 0 20px rgba(0, 238, 255, 0.1);
        position: relative;
        overflow: hidden;
    }
    
    .profile-image {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .profile-pic {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        border: 3px solid var(--main-color);
        padding: 3px;
        transition: all 0.3s ease;
    }
    
    .contact-form {
        width: 100%;
    }
    
    .input-group {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .form-group {
        position: relative;
        margin-bottom: 1.5rem;
    }
    
    .form-group i {
        position: absolute;
        left: 1.2rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--main-color);
        font-size: 1.4rem;
        z-index: 1;
        transition: all 0.3s ease;
        opacity: 0.8;
    }
    
    .form-group input:focus + i,
    .form-group textarea:focus + i {
        color: var(--main-color);
        transform: translateY(-50%) scale(1.1);
        text-shadow: 0 0 10px var(--main-color);
        opacity: 1;
    }
    
    .form-group textarea {
        height: 150px;
        resize: none;
    }
    
    .form-group textarea + i {
        top: 2rem;
        transform: none;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 1.2rem 1.2rem 1.2rem 3.5rem;
        background: rgba(42, 42, 42, 0.8) !important;
        border: 2px solid rgba(0, 238, 255, 0.1);
        border-radius: 12px;
        color: #fff !important;
        font-size: 1.1rem;
        font-weight: 400;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: rgba(255, 255, 255, 0.7);
        opacity: 1;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        border-color: var(--main-color);
        box-shadow: 0 0 20px rgba(0, 238, 255, 0.15);
        transform: translateY(-2px);
        background: rgba(42, 42, 42, 0.95) !important;
    }
    
    .contact-form .btn {
        width: 100%;
        padding: 1.2rem;
        background: linear-gradient(45deg, var(--main-color), #00c4cc);
        color: #000;
        border: none;
        border-radius: 12px;
        font-size: 1.1rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .contact-form .btn:hover {
        background: linear-gradient(45deg, #00c4cc, var(--main-color));
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 238, 255, 0.3);
    }
    
    .contact-form .btn i {
        font-size: 1.4rem;
        transition: transform 0.3s ease;
    }
    
    .contact-form .btn:hover i {
        transform: translateX(5px);
    }
    
    /* Autofill stilleri */
    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    input:-webkit-autofill:active {
        -webkit-box-shadow: 0 0 0 30px rgba(42, 42, 42, 0.95) inset !important;
        -webkit-text-fill-color: #fff !important;
        caret-color: var(--main-color) !important;
    }
    
    /* Firefox için autofill */
    input:-moz-autofill,
    input:-moz-autofill:hover,
    input:-moz-autofill:focus,
    input:-moz-autofill:active {
        -moz-box-shadow: 0 0 0 30px rgba(42, 42, 42, 0.95) inset !important;
        -moz-text-fill-color: #fff !important;
        caret-color: var(--main-color) !important;
    }
    
    /* Genel autofill */
    input:autofill,
    input:autofill:hover,
    input:autofill:focus,
    input:autofill:active {
        box-shadow: 0 0 0 30px rgba(42, 42, 42, 0.95) inset !important;
        text-fill-color: #fff !important;
        caret-color: var(--main-color) !important;
    }
    
    @media (max-width: 768px) {
        .contact-container {
            padding: 1.5rem;
        }
        
        .profile-pic {
            width: 80px;
            height: 80px;
        }
        
        .form-group input,
        .form-group textarea {
            font-size: 0.9rem;
        }
    }
    
    /* Footer Stili */
    .footer {
        background: var(--bg-color);
        padding: 0.5rem 0;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        border-top: 1px solid rgba(0, 238, 255, 0.1);
    }
    
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-text p {
        color: #888;
        font-size: 1.2rem;
        text-align: center;
        margin: 0;
    }
    
    .footer-social a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        color: #888;
        font-size: 1.6rem;
        transition: all 0.3s ease;
    }
    
    .footer-social a:hover {
        color: var(--main-color);
    }
    
    @media (max-width: 768px) {
        .footer {
            padding: 0.3rem 0;
        }
        
        .footer-content {
            flex-direction: row;
            gap: 1rem;
            padding: 0 1rem;
        }
        
        .footer-text p {
            font-size: 1.1rem;
        }
        
        .footer-social a {
            width: 2.2rem;
            height: 2.2rem;
            font-size: 1.4rem;
        }
    }
    
    @media (max-width: 320px) {
        .slide .content {
            padding: 1.5rem;
        }
        
        .content h2 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }
        
        .content .title {
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }
        
        .content p {
            font-size: 1.4rem;
            line-height: 1.6;
            margin: 0;
        }
    }       line-height: 1.6;
            margin: 0;
        }
    }

    /* Responsive Ana Sayfa Başlık ve Paragraf DÜZELTME */
    @media (max-width: 600px) {
      .anasayfa {
        flex-direction: column;
        align-items: flex-start;
        padding: 4rem 2vw 2rem;
        gap: 2rem;
      }
      .anasayfa-content {
        max-width: 100vw;
        width: 100%;
        padding: 0;
        margin: 0;
        text-align: left;
        min-height: 1px;
      }
      .anasayfa-content h1 {
        font-size: 2.2rem;
      }
      .anasayfa-content h3 {
        font-size: 1.15rem;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 0.8rem;
        white-space: normal;
        display: block;
        width: 100%;
        padding: 0;
        min-height: 2.6rem; /* cursor ve animasyon için sabit yükseklik */
      }
      .anasayfa-content h3 .multiple-text {
        display: inline-block;
        white-space: nowrap;
        overflow-x: hidden;
        text-overflow: ellipsis;
        max-width: 90vw;
        min-width: 1.5em;
        vertical-align: middle;
        min-height: 1em;
      }
      .anasayfa-content p {
        font-size: 1.05rem;
        margin: 0 0 1.5rem 0;
        width: 100%;
        line-height: 1.5;
        padding: 0;
        box-sizing: border-box;
        clear: both;
        display: block;
        min-height: 3.5rem; /* p'nin zıplamasını önler */
      }
      .social-button-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        margin-top: 1.5rem;
      }
      .home-img {
        margin: 0 auto;
        padding-top: 1.5rem;
      }
      .home-img img {
        width: 70vw;
        max-width: 220px;
        margin: 0 auto;
        display: block;
      }
    }   padding-top: 1.5rem;
      }
      .home-img img {
        width: 70vw;
        max-width: 220px;
        margin: 0 auto;
        display: block;
      }
    }