* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #923BFD;
         
        }

        .site-header {
            background: #923BFD;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
 
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Logo */
        .logo {
            background: #1f2937;
            padding: 15px 20px;
            border-radius: 15px;
            font-weight: bold;
            font-size: 24px;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .logo:hover {
            background: #374151;
            transform: scale(1.05);
        }
.tp-hero-2__shape-1 {
margin-left:33px;
}
        /* Next Logo */
        .nextlogo {
            width: 80px;
            height: 80px;
            transition: all 0.3s ease;
        }

        .nextlogo:hover {
            transform: scale(1.05);
        }

        /* Navigation */
        .main-nav {
            display: flex;
            gap: 35px;
            list-style: none;
            align-items: center;
        }

        .main-nav a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

        .main-nav a:hover {
            opacity: 0.8;
        }

        .main-nav a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 2px;
            background: white;
            border-radius: 2px;
        }

        /* Download Button */
        .download-btn {
            background: #1f2937;
            color: white;
            padding: 12px 28px;
            border-radius: 25px;
            border: none;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .download-btn:hover {
            background: #374151;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }


        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: #1f2937;
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 24px;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .header-container {
                padding: 0 20px;
            }

            .main-nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #9333ea 0%, #a855f7 50%, #ec4899 100%);
                flex-direction: column;
                padding: 20px;
                gap: 20px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            }

            .main-nav.active {
                display: flex;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .download-btn {
                display: none;
            }

            .main-nav .download-btn {
                display: inline-block;
                width: 100%;
                text-align: center;
            }
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            margin-top: 100px;
            text-align: center;
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 50px;
     background-image: linear-gradient(
    90deg, 
    #751480 0%,
    #F68991 35%,
    #E2608B 67%,
    #FAB89B 100%
  );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            padding: 20px;
        }

        .feature-card {
            background: white;
            border-radius: 31px;
            padding: 31px 35px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            max-width: 374px;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        }

        .card-icon {
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
        }

        .card-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .card-title {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 15px;
            color: #1f2937;
        }

        .card-title.blue { color: #3b82f6; }
        .card-title.purple { color: #a855f7; }
        .card-title.indigo { color: #6366f1; }
        .card-title.pink { color: #ec4899; }
        .card-title.orange { color: #f97316; }
        .card-title.red { color: #ef4444; }
        .card-title.yellow { color: #eab308; }

        .card-description {
            color: #6b7280;
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .card-button {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: #ede9fe;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .card-button:hover {
            background: #ddd6fe;
            transform: scale(1.1);
        }

        .card-button svg {
            width: 12px;
            height: 12px;
      
        }

        /* 3D Icon Styles */
        .icon-rocket {
          width:100px;
               height:100px;
        }

        .icon-telescope {
          width:100px;
               height:100px;
        }

        .icon-graduation {
           width:100px;
                height:100px;
        }

        .icon-microphone {
            width:100px;
                 height:100px;
        }

        .icon-medal {
           width:100px;
            height:100px;
        }

        .icon-gift {
      width:100px;
           height:100px;
        }

        .icon-coins {
          width:143px;
               height:100px;
        }

        .icon-bag {
   width:142px;
        height:100px;
        }

        .icon-notes {
   width:142px;
        height:100px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .cards-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2rem;
            }
        }
         .hero-section {
        background: #923BFD;
        min-height: calc(100vh - 120px);
        position: relative;
        overflow: visible;
        color: white;
        padding-bottom: 120px;
    }

    .hero-section::before {

        position: absolute;
        top: 80px;
        right: 100px;
        font-size: 60px;
        opacity: 0.2;
    }

    .hero-section::after {
  
        position: absolute;
        bottom: 180px;
        left: 50px;
        font-size: 40px;
        opacity: 0.1;
    }

    .hero-content {
        max-width: 1400px;
        margin: 0 auto;
        padding: 80px 40px 80px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        min-height: 600px;
    }

    .hero-text h1 {
        font-size: 4rem;
        font-weight: bold;
        line-height: 1.4;
          margin-bottom: 20px;
    }
 .hero-text h2 {
        font-size: 3rem;
        font-weight: 400;
        margin-bottom: 20px;
        line-height: 1.1;
    }
    .hero-text .subtitle2 {
        font-size: 1.3rem;
                margin-top: 30px;
        margin-bottom: 15px;
        opacity: 0.95;
        color:#fff !important;
        font-weight: 400;
    }

    .hero-text .description {
        font-size: 1.15rem;
        font-weight: 700;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .hero-text .download-info {
        margin-top: 85px;
        margin-bottom: 10px;
    }

    .hero-text .download-info p {
        font-size: 0.95rem;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .hero-text .download-info .platform-text {
        font-size: 0.9rem;
        opacity: 0.85;
        font-weight: 400;
    }

    .app-buttons {
        display: flex;
        gap: 15px;
        margin: 15px 0 25px;
    }

    .app-btn {
        color: white;
        border-radius: 12px;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s;
    }

    .app-btn img {
        display: block;
        height: 50px;
        width: auto;
    }

    .app-btn:hover {
        transform: translateY(-3px);
        filter: brightness(1.1);
    }

    .universities-badge {
        margin-top: 65px;
    }

    .universities-badge p {
        font-size: 0.95rem;
        margin-bottom: 15px;
        font-weight: 500;
    }

    .university-avatars {
        display: flex;
        margin-left: 15px;
    }

    .avatar {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left:-15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        transition: transform 0.3s;
    }

    .avatar img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 50%;
    }

    .avatar:hover {
        transform: translateY(-5px);
    }

    .hero-phones {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .phone-mockup {
        position: relative;
        width: 380px;
        max-width: 100%;
        height: auto;
        transition: transform 0.4s ease;
        filter: drop-shadow(0 25px 50px rgba(0,0,0,0.3));
    }

    .phone-mockup:hover {
        transform: scale(1.05) translateY(-10px);
    }
.scroll-bg {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
}
    .phone-mockup img {
        width: 503px;
        height: 719px;
        display: block;
    }
    
.mouse-scroll-btn {
    display: inline-block;
    width: 15px;
    height: 25px;
    border: 2px solid #5f6168;
    border-radius: 30px;
    outline: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 28px;
    z-index: 5;
}
.mouse-scroll-btn:before {
    position: absolute;
    top: 4px;
    left: 2.5px;
    content: "";
    height: 6px;
    width: 6px;
    border: 2px solid #5f6168;
    border-radius: 50%;
    animation: scroll 1s 
ease-in-out infinite alternate;
}
    /* Features Section */
    .features-section {
        padding: 100px 40px;
        background: white;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-header h2 {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 15px;
        color: #1f2937;
    }

    .section-header p {
        font-size: 1.3rem;
        color: #6b7280;
    }

    .features-grid {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

 

    .feature-icon {
        width: 60px;
        height: 60px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        font-size: 30px;
        transition: transform 0.3s;
    }

    .feature-card:hover .feature-icon {
        transform: scale(1.1);
    }

    .feature-card h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        color: #1f2937;
    }

    .feature-card p {
        color: #6b7280;
    }

    .icon-blue { background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%); }
    .icon-pink { background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%); }
    .icon-purple { background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%); }
    .icon-green { background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%); }
    .icon-yellow { background: linear-gradient(135deg, #facc15 0%, #f97316 100%); }
    .icon-red { background: linear-gradient(135deg, #f87171 0%, #ef4444 100%); }

    /* Download Section */
    .download-section {
        padding: 100px 40px;
        background: linear-gradient(135deg, #9333ea 0%, #a855f7 50%, #ec4899 100%);
        color: white;
        text-align: center;
    }

    .download-section h2 {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .download-section > p {
        font-size: 1.3rem;
        margin-bottom: 40px;
        opacity: 0.9;
    }

    .download-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-bottom: 60px;
    }

    .download-buttons .app-btn {
        font-size: 1.1rem;
        padding: 18px 35px;
    }

    .stats {
        display: flex;
        justify-content: center;
        gap: 80px;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .stat-label {
        color: rgba(255,255,255,0.8);
    }

    /* Responsive */
    @media (max-width: 968px) {
        .hero-section {
            min-height: auto;
            padding-bottom: 100px;
        }

        .hero-content {
            grid-template-columns: 1fr;
            text-align: center;
            padding: 60px 30px 60px;
            min-height: auto;
        }

        .hero-text h1 {
            font-size: 2.8rem;
        }

        .hero-text .subtitle2 {
            font-size: 1.2rem;
        }

        .hero-text .description {
            font-size: 1.05rem;
        }

        .hero-phones {
            margin-top: 40px;
        }

        .phone-mockup {
            width: 300px;
        }

        .app-buttons {
            justify-content: center;
        }

        .university-avatars {
            justify-content: center;
        }

        .stats {
            flex-direction: column;
            gap: 30px;
        }

        .scroll-down-btn {
            bottom: 70px;
        }
    }

    @media (max-width: 640px) {
        .hero-section {
            padding-bottom: 80px;
        }

        .hero-content {
            padding: 40px 20px 40px;
        }

        .hero-text h1 {
            font-size: 2rem;
        }

        .hero-text .subtitle2 {
            font-size: 1.05rem;
        }

        .hero-text .description {
            font-size: 0.95rem;
        }

        .phone-mockup {
            width: 240px;
        }

        .app-buttons {
            flex-direction: column;
            align-items: center;
        }

        .app-btn img {
            height: 45px;
        }

        .scroll-down-btn {
            bottom: 50px;
        }
    }
/* Daha Fazlası Butonu */
.scroll-down-btn {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.more-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.more-btn:hover {
    color: #ffffff;
    transform: translateY(5px);
}

.more-btn svg {
    width: 32px;
    height: 32px;
    opacity: 0.9;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .scroll-down-btn {
        bottom: 60px;
    }
    
    .more-btn {
        font-size: 12px;
    }
    
    .more-btn svg {
        width: 28px;
        height: 28px;
    }
}

