        /* width */
        ::-webkit-scrollbar {
            width: 5px;
        }

        /* Track */
        ::-webkit-scrollbar-track {
            box-shadow: inset 0 0 5px grey;
            border-radius: 10px;
        }

        /* Handle */
        ::-webkit-scrollbar-thumb {
            background: rgb(255, 208, 0);
            border-radius: 10px;
        }

        /* Handle on hover */
        ::-webkit-scrollbar-thumb:hover {
            background: #ffbf0e;
        }
        
        /* Açık tema (varsayılan) */
        :root {
            --primary-color: #FFD700; /* Altın sarısı */
            --primary-dark: #E6C200; /* Daha koyu altın sarısı */
            --primary-light: #FFEB80; /* Daha açık altın sarısı */
            --secondary-color: #FFB700; /* Turuncu-sarı */
            --dark-color: #333333; /* Neredeyse siyah */
            --text-color: #4A4A4A; /* Koyu gri */
            --text-light: #777777; /* Açık gri */
            --light-bg: #F9F9F9; /* Açık gri arka plan */
            --white: #FFFFFF; /* Beyaz */
            --success-color: #28a745; /* Yeşil */
            --warning-color: #ff9800; /* Turuncu */
            --danger-color: #dc3545; /* Kırmızı */
            --black: #000000; /* Siyah */
            --border-color: #E0E0E0; /* Açık gri sınırlar */
            --card-bg: #FFFFFF; /* Kart arka planı */
        }
        
        /* Koyu tema */
        [data-theme="dark"] {
            --primary-color: #FFD700; /* Altın sarısı - aynı */
            --primary-dark: #E6C200; /* Daha koyu altın sarısı - aynı */
            --primary-light: #FFEB80; /* Daha açık altın sarısı - aynı */
            --secondary-color: #FFB700; /* Turuncu-sarı - aynı */
            --dark-color: #EEEEEE; /* Açık renk */
            --text-color: #DDDDDD; /* Açık renk */
            --text-light: #BBBBBB; /* Açık renk */
            --light-bg: #222222; /* Koyu renk */
            --white: #121212; /* Neredeyse siyah */
            --success-color: #28a745; /* Yeşil - aynı */
            --warning-color: #ff9800; /* Turuncu - aynı */
            --danger-color: #dc3545; /* Kırmızı - aynı */
            --black: #FFFFFF; /* Beyaz */
            --border-color: #333333; /* Koyu renk */
            --card-bg: #1E1E1E; /* Koyu kart arka planı */
            --muted-text: #A0A0A0; /* Koyu tema için açık gri metin */
            --button-text: #333333; /* Butonlardaki metin rengi */
            --cta-text: #EEEEEE; /* CTA bölümündeki metin rengi */
            --footer-text: #B0B0B0; /* Footer'daki text-muted metin rengi */
            --nav-active: #FFD700; /* Aktif navigasyon linki rengi */
        }

        .hero-badge-animated .small.text-muted {
            color: var(--muted-text) !important;
        }
        
        /* Light button text color */
        .stats-card-bg {
            background-color: var(--card-bg) !important;
            color: var(--text-color) !important;
            border-color: var(--border-color) !important;
        }
        
        .stats-card-bg .text-muted {
            color: var(--muted-text) !important;
        }
        
        /* Tema değişim butonu */
        .theme-switch {
            position: fixed;
            top: 90px;
            right: 20px;
            z-index: 999;
            background-color: var(--primary-color);
            color: var(--dark-color);
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }
        
        .theme-switch:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--white);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--dark-color);
        }
        
        .navbar {
            background-color: var(--white);
            padding: 0.8rem 2rem;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-scrolled {
            padding: 0.5rem 2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--dark-color);
            display: flex;
            align-items: center;
        }
        
        .brand-logo {
            margin-right: 10px;
            height: 36px;
        }
        
        .nav-link {
            color: var(--text-color);
            margin-left: 1.5rem;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.5rem 0;
            transition: all 0.3s;
            position: relative;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .nav-link:hover:after,
        .nav-link.active:after {
            width: 100%;
        }
        
        .nav-link.active {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .btn {
            font-weight: 600;
            padding: 0.6rem 1.5rem;
            border-radius: 6px;
            transition: all 0.3s;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
        }
        
        [data-theme="dark"] .btn-primary{
        color: #1E1E1E;
        }

        [data-theme="dark"] .fa-sun{
            color:rgb(83, 83, 83);
        }

        [data-theme="dark"] .btn-primary:hover{
        color: #1E1E1E;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: var(--dark-color);
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            color: var(--dark-color);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
        }
        
        .btn-primary:active {
            transform: translateY(0);
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
        }
        

        [data-theme="dark"] .btn-outline-primary:hover {
            color: #1E1E1E;

        }
        .btn-outline-primary {
            color: var(--dark-color);
            border-color: var(--primary-color);
            background-color: transparent;
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            color: var(--dark-color);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
        }
        
        .btn-outline-dark {
            color: var(--dark-color);
            border-color: var(--dark-color);
            background-color: transparent;
        }
        
        .btn-outline-dark:hover {
            background-color: var(--dark-color);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }
        
        .btn-link {
            color: var(--primary-color);
            text-decoration: none;
            padding: 0;
            font-weight: 600;
        }
        
        .btn-link:hover {
            color: var(--primary-dark);
            text-decoration: none;
        }
        
        .hero-section {
            padding: 8rem 0 6rem;
            background-color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0) 70%);
            z-index: 0;
        }
        
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0) 70%);
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero-badge {
            display: inline-block;
            background-color: rgba(255, 215, 0, 0.15);
            color: var(--dark-color);
            font-weight: 600;
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(255, 215, 0, 0.3);
            font-size: 0.85rem;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(to right, gold, var(--text-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            max-width: 80%;
        }
        
        .hero-stats {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 1.5rem;
            margin-top: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--border-color);
        }
        
        .hero-stat {
            padding: 0 1rem;
            border-right: 1px solid var(--border-color);
        }
        
        .hero-stat:last-child {
            border-right: none;
        }
        
        .hero-stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
            margin-bottom: 0.5rem;
            font-family: 'Montserrat', sans-serif;
        }
        
        .hero-stat-text {
            font-size: 0.9rem;
            color: var(--text-light);
        }
        
        .hero-cta {
            margin-top: 2.5rem;
        }
        
        .hero-cta .btn {
            margin-right: 1rem;
            margin-bottom: 1rem;
        }
        
        .hero-image-container {
            position: relative;
            z-index: 1;
        }
        
        .hero-image {
            width: 100%;
            border-radius: 12px;
            transition: all 0.5s;
            transform: translateY(0);
        }
        
        .hero-image:hover {
            transform: translateY(-10px);
        }
        
        .hero-badge-animated {
            position: absolute;
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            animation: float 3s ease-in-out infinite;
        }
        
        .badge-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 215, 0, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            margin-right: 1rem;
            font-size: 1.2rem;
        }
        
        .badge-bottom-right {
            bottom: -20px;
            right: 30px;
            animation-delay: 0.5s;
        }
        
        .badge-top-left {
            top: 30px;
            left: -20px;
            animation-delay: 1s;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0);
            }
        }
        
        .section {
            padding: 6rem 0;
        }
        
        .section-light {
            background-color: var(--light-bg);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            font-size: 2.5rem;
        }
        
        .section-title span {
            display: block;
            font-size: 1rem;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .feature-card {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 2.5rem 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            height: 100%;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background-color: var(--primary-color);
            transition: height 0.3s;
            z-index: -1;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .feature-card:hover::before {
            height: 100%;
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: rgba(255, 215, 0, 0.15);
            color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s;
        }
        
        .feature-card:hover .feature-icon {
            background-color: var(--primary-color);
            color: var(--white);
            transform: rotateY(180deg);
        }
        
        .feature-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            transition: all 0.3s;
        }
        
        .feature-card:hover .feature-title {
            color: var(--primary-color);
        }
        
        .feature-text {
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }
        
        .feature-link {
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }
        
        .feature-link i {
            margin-left: 5px;
            transition: transform 0.3s;
        }
        
        .feature-link:hover i {
            transform: translateX(5px);
        }
        
        .prediction-section {
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .prediction-section::before {
            content: '';
            position: absolute;
            top: -150px;
            right: -150px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0) 70%);
            z-index: 0;
        }
        
        .prediction-card {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
            transition: all 0.3s;
            border: 1px solid var(--border-color);
            position: relative;
        }
        
        .prediction-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }
        
        .prediction-tag {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background-color: rgba(255, 215, 0, 0.2);
            color: var(--dark-color);
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .prediction-league {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 1rem;
        }
        
        .prediction-locked {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            text-align: center;
            z-index: 10;
        }
        
        .league-flag {
            width: 36px;
            height: auto;
            border-radius: 2px;
            margin-right: 0.5rem;
        }
        
        .prediction-teams {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .team {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .team-logo {
            width: 60px;
            height: 60px;
            margin-bottom: 0.5rem;
        }
        
        .team-name {
            font-weight: 600;
            color: var(--dark-color);
            font-size: 1rem;
        }
        
        .vs {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-light);
        }
        
        .prediction-details {
            align-items: center;
            text-align: center;
            background-color: var(--light-bg);
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .prediction-type {
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 0.5rem;
        }
        
        .prediction-value {
            font-size: 1.2rem;
            font-weight: 700;
            color:rgb(14, 204, 30);
            margin-bottom: 0.5rem;
        }
        
        .prediction-confidence {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--white);
            margin-top: 0.5rem;
        }

        [data-theme="dark"] .confidence-high {
            color: white;
        }        
        .confidence-high {
            background-color: var(--success-color);
        }
        
        .confidence-medium {
            background-color: var(--warning-color);
        }
        
        .confidence-low {
            background-color: var(--danger-color);
        }
        
        .prediction-stats {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1.5rem;
        }
        
        .stat-item {
            text-align: center;
            flex: 1;
        }
        
        .stat-value {
            font-weight: 700;
            color: var(--dark-color);
            font-size: 1.1rem;
        }
        
        .stat-label {
            font-size: 0.8rem;
            color: var(--text-light);
        }
        
        .form-indicator {
            display: inline-block;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            color: var(--white);
            text-align: center;
            line-height: 24px;
            font-weight: 600;
            font-size: 0.8rem;
            margin-right: 2px;
        }
        
        .form-win {
            background-color: var(--success-color);
        }
        
        .form-draw {
            background-color: var(--warning-color);
        }
        
        .form-lose {
            background-color: var(--danger-color);
        }
        
        .prediction-action {
            text-align: center;
        }
        

        [data-theme="dark"] .premium-badge,
        [data-theme="dark"] .vip-badge
        {
            color:rgb(10, 19, 9) !important;
        }
        
        .premium-badge {
            position: absolute;
            top: 0;
            right: 1.5rem;
            background-color: var(--primary-color);
            color: var(--dark-color);
            font-weight: 600;
            padding: 0.4rem 1rem;
            border-radius: 0 0 8px 8px;
            font-size: 0.8rem;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        }
        
        .vip-badge {
            position: absolute;
            top: 0;
            right: 1.5rem;
            background-color: #FFC107;
            color: var(--dark-color);
            font-weight: 600;
            padding: 0.4rem 1rem;
            border-radius: 0 0 8px 8px;
            font-size: 0.8rem;
            box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
        }
        
        .pricing-section {
            padding: 6rem 0;
            background-color: var(--light-bg);
            position: relative;
            overflow: hidden;
        }
        
        .pricing-title-section {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .pricing-subtitle {
            font-size: 1rem;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .pricing-headline {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .pricing-description {
            max-width: 700px;
            margin: 0 auto;
            color: var(--text-light);
        }
        
        .pricing-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 3rem auto;
            max-width: 300px;
        }
        
        .toggle-label {
            font-weight: 600;
            transition: color 0.3s;
            cursor: pointer;
        }
        
        .toggle-label.active {
            color: var(--primary-color);
        }
        
        .toggle-switch {
            position: relative;
            width: 60px;
            height: 30px;
            background-color: var(--primary-color);
            border-radius: 30px;
            margin: 0 1rem;
            cursor: pointer;
        }
        
        .toggle-button {
            position: absolute;
            top: 3px;
            left: 3px;
            width: 24px;
            height: 24px;
            background-color: var(--white);
            border-radius: 50%;
            transition: transform 0.3s;
        }
        
        .toggle-switch.yearly .toggle-button {
            transform: translateX(30px);
        }
        
        [data-theme="dark"] .save-badge {
        color:rgb(10, 19, 9) !important;
        }

        .save-badge {
            background-color: var(--primary-color);
            color: var(--dark-color);
            font-weight: 600;
            padding: 0.3rem 0.6rem;
            border-radius: 50px;
            font-size: 0.7rem;
            margin-left: 1rem;
            position: relative;
        }
        
        .pricing-card {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 3rem 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            height: 100%;
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .pricing-card.popular {
            border: 2px solid var(--primary-color);
            transform: scale(1.05);
            z-index: 1;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }
        
        [data-theme="dark"] .pricing-card-badge{
            color: #1E1E1E;
        }
        .pricing-card-badge {
            position: absolute;
            top: 15px;
            right: -35px;
            background-color: var(--primary-color);
            color: var(--dark-color);
            padding: 0.5rem 3rem;
            transform: rotate(45deg);
            font-weight: 600;
            font-size: 0.8rem;
        }
        
        .pricing-card-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .pricing-card-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .pricing-card-price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        .pricing-card-period {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 400;
        }
        
        .pricing-card-description {
            text-align: center;
            margin-bottom: 2rem;
            color: var(--text-light);
        }
        
        .pricing-card-features {
            flex-grow: 1;
            overflow-y: auto;
            max-height: 400px; /* İhtiyaca göre ayarlayabilirsiniz */
            margin-bottom: 2rem;
            padding-right: 5px; /* Scroll çubuğu için alan */
            list-style: none;
            padding: 0;
            margin: 0 0 2rem;
        }
        
        .pricing-feature {
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
        }
        
        .pricing-feature:last-child {
            border-bottom: none;
        }
        
        .feature-icon {
            color: var(--primary-color);
            margin-right: 0.8rem;
            font-size: 1.1rem;
        }
        

/* Scroll çubuğunu güzelleştirme (opsiyonel) */
.pricing-card-features::-webkit-scrollbar {
    width: 4px;
}

.pricing-card-features::-webkit-scrollbar-track {
    background: var(--border-color);
    border-radius: 10px;
}

.pricing-card-features::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

        .pricing-feature-text {
            color: var(--text-color);
        }
        
        .pricing-feature-highlight {
            font-weight: 600;
            color: var(--dark-color);
        }
        
        .pricing-card-action {
            text-align: center;
        }
        
        .testimonials-section {
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-card {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            position: relative;
            margin-top: 2rem;
            height: 100%;
            border: 1px solid var(--border-color);
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }
        
        .blackbtn{
            border: #363636 solid 2px;
        }
        
        .testimonial-card-badge {
            position: absolute;
            top: -0.5rem;
            left: 1.5rem;
            background-color: var(--primary-color);
            color: #1E1E1E;
            padding: 0.3rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.8rem;
            box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            color: var(--text-color);
            position: relative;
            padding-left: 1.5rem;
            border-left: 3px solid var(--primary-color);
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 1rem;
            background-color: var(--primary-light);
            color: var(--primary-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 600;
            border: 2px solid var(--primary-color);
        }
        
        .author-details {
            flex: 1;
        }
        
        .author-name {
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 0.2rem;
        }
        
        .author-title {
            font-size: 0.9rem;
            color: var(--text-light);
        }
        
        .testimonial-rating {
            margin-top: 1rem;
            color: var(--primary-color);
        }
        
        .testimonial-results {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
        }
        
        .testimonial-stat {
            text-align: center;
            flex: 1;
        }
        
        .testimonial-stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .testimonial-stat-label {
            font-size: 0.8rem;
            color: var(--text-light);
        }
        

        [data-theme="dark"] .cta-section{
            background-color: white;
        }
        .cta-section {
            padding: 6rem 0;
            background-color: var(--dark-color);
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -150px;
            right: -150px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0) 70%);
            z-index: 0;
        }
        
        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0) 70%);
            z-index: 0;
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        [data-theme="dark"] .cta-title{
            color: #1E1E1E;
        }
        
        .cta-title {
            font-size: 2.5rem;
            color: var(--white);
            margin-bottom: 1.5rem;
        }
        

        [data-theme="dark"] .cta-text{
            color:rgb(15, 15, 15);
        }

        .cta-text {
            color: #BBBBBB;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }
        
        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }
        
        .footer {
            background-color: var(--white);
            padding: 5rem 0 2rem;
            border-top: 1px solid var(--border-color);
        }
        
        .footer-logo {
            margin-bottom: 1.5rem;
        }
        
        .footer-description {
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }
        
        .footer-social {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--light-bg);
            color: var(--dark-color);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .social-icon:hover {
            background-color: var(--primary-color);
            color: var(--dark-color);
            transform: translateY(-5px);
        }
        
        .footer-title {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: var(--dark-color);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s;
            display: inline-flex;
            align-items: center;
        }
        
        .footer-links a i {
            margin-right: 0.5rem;
            font-size: 0.8rem;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
        }
        
        .footer-newsletter {
            margin-bottom: 2rem;
        }
        
        .newsletter-form {
            display: flex;
        }
        
        .newsletter-input {
            flex: 1;
            border: 1px solid var(--border-color);
            border-radius: 6px 0 0 6px;
            padding: 0.6rem 1rem;
            font-size: 0.9rem;
        }
        
        [data-theme="dark"] .newsletter-button{
            color: #1E1E1E;
        }

        .newsletter-button {
            background-color: var(--primary-color);
            color: var(--dark-color);
            border: none;
            border-radius: 0 6px 6px 0;
            padding: 0 1.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .newsletter-button:hover {
            background-color: var(--primary-dark);
        }
        
        .footer-bottom {
            border-top: 1px solid var(--border-color);
            padding-top: 2rem;
            margin-top: 3rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        
        .copyright {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        .footer-bottom-links {
            display: flex;
            gap: 1.5rem;
        }
        
        .footer-bottom-link {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
        
        .footer-bottom-link:hover {
            color: var(--primary-color);
        }
        

        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: #1E1E1E;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            opacity: 0;
            transition: all 0.3s;
            z-index: 99;
        }
        
        .scroll-to-top.active {
            opacity: 1;
        }
        
        .scroll-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        /* Pricing card action - garanti metinleri düzeltmesi */
        .pricing-card-action .text-muted,
        .pricing-card-action .text-muted i {
            color: var(--muted-text) !important;
        }
        
        /* Active navbar link düzeltmesi */
        .nav-link.active {
            color: var(--primary-color) !important;
            font-weight: 600;
        }
        
        /* CTA butonlarındaki metinler için düzeltme */
        .cta-buttons .btn-light {
            color: var(--button-text) !important;
            font-weight: 600;
            
        }
        
        /* Footer muted text */
        .footer .text-muted, 
        .footer .text-muted a,
        .small.text-muted {
            color: var(--footer-text) !important;
        }
        
        /* Shield icon düzeltmesi */
        .fa-shield-alt {
            color: var(--primary-color) !important;
        }
        
        @media (max-width: 1199.98px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                max-width: 100%;
            }
            
            .hero-stat-number {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 991.98px) {
            .navbar {
                padding: 1rem;
            }
            
            .hero-section {
                padding: 7rem 0 4rem;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-image-container {
                margin-top: 3rem;
            }
            
            .section {
                padding: 4rem 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .pricing-card.popular {
                transform: scale(1);
            }
            
            .pricing-card.popular:hover {
                transform: translateY(-10px);
            }
            
            .cta-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 767.98px) {
            .hero-section {
                padding: 6rem 0 3rem;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-stats {
                margin-top: 1.5rem;
                padding: 1rem;
            }
            
            .hero-stat {
                border-right: none;
                border-bottom: 1px solid var(--border-color);
                padding: 1rem 0;
            }
            
            .hero-stat:last-child {
                border-bottom: none;
            }
            
            .hero-badge-animated {
                display: none;
            }
            
            .section {
                padding: 3rem 0;
            }
            
            .section-title {
                font-size: 1.8rem;
                margin-bottom: 3rem;
            }
            
            .feature-card {
                margin-bottom: 2rem;
            }
            
            .pricing-toggle {
                margin: 2rem auto;
            }
            
            .pricing-card {
                margin-bottom: 2rem;
            }
            
            .cta-title {
                font-size: 1.8rem;
            }
            
            .footer {
                padding: 3rem 0 2rem;
            }
            
            .footer-section {
                margin-bottom: 2rem;
            }
        }
        
        @media (max-width: 575.98px) {
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .feature-card {
                padding: 1.5rem;
            }
            
            .cta-title {
                font-size: 1.5rem;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            
            .footer-bottom-links {
                justify-content: center;
            }
        }