/* Başarı Hikayeleri Sayfası Özel CSS */

:root {
    --primary: #081C9E;
    --primary-light: #375AF8;
    --primary-lighter: #C7D9FD;
    --primary-lightest: #E1EAFE;
    --secondary-color: #00D18C;
    --secondary-color-rgb: 0, 209, 140;
    --secondary-dark: #00A672;
    --dark-color: #00124F;
    --gray-color: #8D93A5;
    --light-gray: #F4F7FF;
    --white: #FFFFFF;
    --orange: #FF9035;
    --red: #FF5C5C;
    --green: #49A684;
    --yellow: #FFA700;
    --gradient-primary: linear-gradient(135deg, #081C9E 0%, #375AF8 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, #00BFA5 100%);
    --gradient-success: linear-gradient(135deg, var(--yellow) 0%, #FF6B35 100%);
    --shadow-sm: 0 2px 8px rgba(8, 28, 158, 0.05);
    --shadow-md: 0 4px 16px rgba(8, 28, 158, 0.1);
    --shadow-lg: 0 6px 24px rgba(8, 28, 158, 0.15);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --transition: all 0.3s ease;
}

/* General Styles */
.basarilar-page {
    overflow-x: hidden;
    background-color: #ffffff;
    color: var(--dark-color);
    font-family: 'Inter', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.basarilar-page section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    margin-top: 70px;
    margin-bottom: 40px;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 16px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    margin: 15px auto 25px;
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-color);
    max-width: 700px;
    margin: 24px auto 0;
    line-height: 1.6;
}

/* Header Section */
.basarilar-header {
    background: linear-gradient(180deg, rgba(38,59,178,1) 0%, rgba(106,123,206,1) 60%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Hero Section - Ana Container */
.basarilar-hero {
    padding: 80px 0 180px;
    position: relative;
    z-index: 1;
}

/* Hero Section - Yeni Konsept Tasarım */
.hero-content-wrapper {
    padding: 20px 0;
    position: relative;
    z-index: 10;
    text-align: left;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge span {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.hero-badge i {
    color: var(--yellow);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-title-container {
    margin-bottom: 24px;
    text-align: left;
    width: 100%;
}

.hero-title-container div {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    text-align: left;
}

.hero-title-container h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    text-align: left;
}

.gradient-text {
    background: linear-gradient(to right, var(--secondary-color), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    position: relative;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Hero Counter Blokları */
.hero-counters {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.counter-block {
    display: flex;
    align-items: center;
    gap: 15px;
}

.counter-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.counter-circle::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), transparent 70%);
    z-index: -1;
}

.counter-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}

.counter-info {
    display: flex;
    flex-direction: column;
}

.counter-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.counter-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Hero Butonları */
.hero-actions {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--border-radius-md);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 8px 15px rgba(8, 28, 158, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(8, 28, 158, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(8, 28, 158, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(8, 28, 158, 0);
    }
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(8, 28, 158, 0.4);
    color: var(--white);
}

.btn-primary:hover::before {
    left: 100%;
    animation: wave-animation 1.2s infinite;
}

@keyframes wave-animation {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--border-radius-md);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    color: var(--white);
}

/* Hero Visuals - Mozaik Kart Tasarımı */
.hero-visuals {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}

.success-mosaic {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.success-mosaic:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.mosaic-row {
    display: flex;
    gap: 20px;
}

.mosaic-item {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.mosaic-item:hover {
    transform: translateY(-5px) scale(1.05);
    z-index: 10;
}

.m-item-1 {
    animation: float 6s ease-in-out infinite;
}

.m-item-2 {
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

.m-item-3 {
    animation: float 7s ease-in-out infinite;
    animation-delay: 0.5s;
}

.m-item-4 {
    animation: float 9s ease-in-out infinite;
    animation-delay: 1.5s;
}

.success-card {
    width: 220px;
    height: 180px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    transform: translateY(0);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.success-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(var(--secondary-color-rgb), 0.3);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.card-data {
    padding: 20px;
    position: relative;
    z-index: 1;
}

.data-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

.data-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
}

.card-user {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
}

/* Floating Elements */
.achievement-badge-floating {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-success);
    padding: 10px 15px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 20px rgba(255, 144, 53, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 5s ease-in-out infinite;
    z-index: 2;
}

.badge-icon {
    font-size: 20px;
    color: var(--white);
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.satisfaction-badge {
    position: absolute;
    bottom: 30px;
    left: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: float 6s ease-in-out infinite;
    animation-delay: 1s;
    z-index: 2;
}

.satisfaction-icon {
    font-size: 24px;
    color: var(--yellow);
    margin-bottom: 5px;
}

.satisfaction-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2px;
}

.satisfaction-text {
    font-size: 12px;
    color: var(--gray-color);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive ayarlamalar */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 48px;
    }

    .success-card {
        width: 200px;
        height: 160px;
    }

    .data-value {
        font-size: 20px;
    }
}

@media (max-width: 992px) {
    .basarilar-hero {
        padding: 80px 0 180px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-counters {
        flex-direction: column;
        gap: 20px;
    }

    .hero-visuals {
        margin-top: 50px;
        transform: scale(0.9);
    }

    .achievement-badge-floating,
    .satisfaction-badge {
        display: none;
    }

    .wave-divider {
        margin-top: -80px;
    }

    .wave-divider svg {
        height: 140px;
        width: 130%;
    }
}

@media (max-width: 768px) {
    .basarilar-hero {
        padding: 60px 0 150px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .success-mosaic {
        transform: none;
        scale: 0.8;
    }

    .wave-divider {
        margin-top: -60px;
    }

    .wave-divider svg {
        height: 100px;
        width: 160%;
    }
}

@media (max-width: 576px) {
    .basarilar-hero {
        padding: 40px 0 130px;
    }

    .hero-title {
        font-size: 32px;
    }

    .mosaic-row {
        flex-direction: column;
        align-items: center;
    }

    .success-card {
        width: 240px;
        height: 160px;
    }

    .wave-divider {
        margin-top: -40px;
    }

    .wave-divider svg {
        height: 80px;
        width: 200%;
    }
}

/* Wave divider - kurumsal sayfadaki gibi */
.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.shape-divider .shape-fill {
    fill: #FFFFFF;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 10;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-divider path {
    fill: var(--white);
}

/* Stats Section */
.stats-section {
    background-color: var(--white);
    padding: 80px 0;
    margin-top: -20px;
    position: relative;
    z-index: 2;
}

.stats-container {
    margin-top: 40px;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition);
    border-radius: var(--border-radius-lg);
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--gray-color);
    font-weight: 500;
}

/* Category Tabs Section - Daha Modern & Dikkat Çekici Tasarım */
.video-section {
    margin-top: -180px;
    padding-top: 210px;
    padding-bottom: 80px;
    position: relative;
    z-index: 20;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(248,249,255,1) 100%);
}

/* Kategori tab'ları modernize edilmiş tasarım - Hero section bitiş çizgisinin üstünde */
.category-tabs {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 18, 79, 0.2);
    padding: 12px;
    position: relative;
    margin-top: -30px;
    margin-bottom: 40px;
    backdrop-filter: blur(15px);
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    z-index: 25;
    overflow: hidden;
}

.category-tabs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(92, 98, 252, 0.05) 0%, rgba(116, 128, 255, 0.05) 100%);
    z-index: -1;
}

.category-tabs:hover {
    box-shadow: 0 35px 70px rgba(0, 18, 79, 0.25);
    transform: translateY(-5px);
}

.category-tabs .nav-pills {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0;
}

.category-tabs .nav-pills .nav-item {
    flex: 1;
    text-align: center;
}

.category-tabs .nav-pills .nav-link {
    background-color: transparent;
    color: var(--dark-color);
    border-radius: 15px;
    padding: 20px 15px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    position: relative;
    width: 100%;
    text-decoration: none;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.category-tabs .nav-pills .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), #4568dc);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.category-tabs .nav-pills .nav-link i {
    font-size: 22px;
    color: var(--primary);
    transition: all 0.4s ease;
}

.category-tabs .nav-pills .nav-link.active {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(8, 28, 158, 0.3);
}

.category-tabs .nav-pills .nav-link.active::before {
    opacity: 1;
}

.category-tabs .nav-pills .nav-link.active i {
    color: var(--white);
    transform: scale(1.2);
}

.category-tabs .nav-pills .nav-link:hover:not(.active) {
    transform: translateY(-3px);
    background-color: rgba(248, 249, 255, 0.9);
    box-shadow: 0 10px 20px rgba(8, 28, 158, 0.1);
}

.category-tabs .nav-pills .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.category-tabs .nav-pills .nav-link:hover::after {
    width: 80%;
}

.category-tabs .nav-pills .nav-link.active::after {
    width: 0;
}

/* Video Başarı Hikayeleri Bölümü - Modernize Edilmiş */
.video-gallery {
    margin-top: 40px;
}

.video-card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 18, 79, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(230, 235, 255, 0.5);
    transform: translateY(0);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 18, 79, 0.15);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 20px 20px 0 0;
    height: 240px;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.08);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
    transition: all 0.4s ease;
    z-index: 2;
}

.play-button i {
    font-size: 38px;
    color: var(--primary);
    transition: all 0.4s ease;
}

.video-thumbnail:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary);
}

.video-thumbnail:hover .play-button i {
    color: var(--white);
}

.video-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-thumbnail:hover::after {
    opacity: 1;
}

.video-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.video-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.video-card:hover .video-title {
    color: var(--primary);
}

.video-desc {
    font-size: 15px;
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.video-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    border-top: 1px solid rgba(0, 18, 79, 0.05);
    padding-top: 15px;
}

.author-image-small {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 18, 79, 0.1);
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-color);
}

/* Daha Fazla Video Butonu - Modernize edilmiş */
.btn-load-more {
    background: linear-gradient(135deg, var(--primary), #4568dc);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    cursor: pointer;
    margin-top: 40px;
    box-shadow: 0 10px 25px rgba(8, 28, 158, 0.2);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-load-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(92, 98, 252, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-load-more:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(8, 28, 158, 0.3);
}

.btn-load-more:hover::before {
    left: 100%;
}

.btn-load-more i {
    transition: transform 0.4s ease;
}

.btn-load-more:hover i {
    transform: rotate(90deg);
}

/* Loading Animation for Load More */
.loading-spinner {
    display: none;
    width: 25px;
    height: 25px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-load-more.loading .loading-spinner {
    display: inline-block;
}

.btn-load-more.loading span {
    display: none;
}

/* Başarı Hikayeleri Bölümü - Modernize Edilmiş */
.success-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
    position: relative;
}

.success-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><rect width="4" height="4" fill="rgba(92, 98, 252, 0.03)" /></svg>');
    opacity: 0.8;
}

.success-stories-container {
    margin-top: 40px;
    position: relative;
}

.featured-success-story {
    display: flex;
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 18, 79, 0.12);
    transition: all 0.4s ease;
    margin-bottom: 40px;
    border: 1px solid rgba(230, 235, 255, 0.6);
}

.featured-success-story:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 18, 79, 0.18);
}

.story-content {
    padding: 45px;
    flex: 1;
}

.story-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.category-badge {
    background: linear-gradient(135deg, rgba(92, 98, 252, 0.1), rgba(116, 128, 255, 0.1));
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    display: inline-block;
    letter-spacing: 0.5px;
    border: 1px solid rgba(92, 98, 252, 0.1);
}

.rating {
    color: #FFD700;
    font-size: 20px;
}

.story-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 25px;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.story-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: 35px;
    font-style: italic;
}

.story-author-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 18, 79, 0.08);
    padding-top: 30px;
}

.author {
    display: flex;
    align-items: center;
    gap: 18px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: 0 8px 20px rgba(0, 18, 79, 0.15);
}

.author-details h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 6px;
}

.author-details p {
    font-size: 15px;
    color: var(--gray-color);
    margin: 0;
}

.stats {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8faff;
    padding: 15px 25px;
    border-radius: 15px;
}

.start-stat, .end-stat {
    text-align: center;
}

.label {
    display: block;
    font-size: 13px;
    color: var(--gray-color);
    margin-bottom: 5px;
}

.value {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
}

.progress-arrow {
    color: #4CAF50;
    font-size: 28px;
}

.story-visual {
    width: 380px;
    position: relative;
    overflow: hidden;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-success-story:hover .main-image {
    transform: scale(1.05);
}

.highlight-badge {
    position: absolute;
    top: 25px;
    right: -40px;
    background: linear-gradient(to right, #4CAF50, #8BC34A);
    color: white;
    font-weight: 700;
    padding: 10px 40px;
    transform: rotate(45deg);
    font-size: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Success Cards */
.success-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.success-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 18, 79, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(230, 235, 255, 0.5);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary), #4568dc);
    transition: height 0.4s ease;
}

.success-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0, 18, 79, 0.15);
}

.success-card:hover::before {
    height: 100%;
}

.card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.subject {
    background: linear-gradient(135deg, rgba(92, 98, 252, 0.1), rgba(116, 128, 255, 0.1));
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.duration {
    color: var(--gray-color);
    font-size: 14px;
}

.card-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.success-card:hover .card-title {
    color: var(--primary);
}

.card-text {
    font-size: 15px;
    color: var(--gray-color);
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 18, 79, 0.05);
    padding-top: 15px;
    margin-top: auto;
}

.card-author {
    font-size: 14px;
    color: var(--dark-color);
    font-weight: 600;
}

.more-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(92, 98, 252, 0.1), rgba(116, 128, 255, 0.1));
    color: var(--primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 18px;
}

.more-btn:hover {
    background: linear-gradient(135deg, var(--primary), #4568dc);
    color: var(--white);
    transform: rotate(90deg);
    box-shadow: 0 8px 20px rgba(8, 28, 158, 0.2);
}

.view-all-btn {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 14px 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(92, 98, 252, 0.2), transparent);
    transition: left 0.6s ease;
}

.view-all-btn:hover {
    background: linear-gradient(135deg, var(--primary), #4568dc);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(8, 28, 158, 0.2);
    border-color: transparent;
}

.view-all-btn:hover::before {
    left: 100%;
}

/* Loading Animation for Success Stories */
.success-spinner-container {
    text-align: center;
    margin: 40px 0;
    display: none;
}

.success-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(92, 98, 252, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
    display: inline-block;
}

/* Hidden success stories that will be loaded dynamically */
.hidden-success-cards {
    display: none;
}

/* Responsive ayarlamaları */
@media (max-width: 992px) {
    .video-section {
        margin-top: -150px;
        padding-top: 180px;
    }

    .category-tabs {
        max-width: 100%;
        padding: 10px;
        margin-top: -60px;
    }

    .category-tabs .nav-pills .nav-link {
        padding: 16px 10px;
        font-size: 15px;
    }

    .category-tabs .nav-pills .nav-link i {
        font-size: 20px;
    }

    .video-thumbnail {
        height: 220px;
    }

    .featured-success-story {
        flex-direction: column;
    }

    .story-visual {
        width: 100%;
        height: 280px;
    }

    .story-content {
        padding: 35px;
    }

    .success-cards-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .video-section {
        margin-top: -120px;
        padding-top: 150px;
    }

    .category-tabs {
        border-radius: 15px;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        padding: 10px;
        margin-top: -50px;
        box-shadow: 0 20px 50px rgba(0, 18, 79, 0.15);
    }

    .category-tabs .nav-pills {
        flex-wrap: nowrap;
        width: max-content;
        min-width: 100%;
    }

    .category-tabs .nav-pills .nav-item {
        flex: 0 0 auto;
        width: auto;
        margin: 0 5px;
    }

    .category-tabs .nav-pills .nav-link {
        padding: 14px 22px;
        width: auto;
        white-space: nowrap;
    }

    .video-thumbnail {
        height: 200px;
    }

    .play-button {
        width: 70px;
        height: 70px;
    }

    .play-button i {
        font-size: 32px;
    }

    .story-content {
        padding: 30px;
    }

    .story-title {
        font-size: 24px;
    }

    .story-author-info {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .success-cards-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .video-section {
        margin-top: -100px;
        padding-top: 130px;
    }

    .category-tabs {
        padding: 8px;
        margin-top: -40px;
    }

    .category-tabs .nav-pills .nav-link {
        padding: 12px 18px;
        font-size: 14px;
    }

    .category-tabs .nav-pills .nav-link i {
        font-size: 18px;
    }

    .video-thumbnail {
        height: 180px;
    }

    .video-title {
        font-size: 18px;
    }

    .btn-load-more {
        padding: 14px 24px;
        font-size: 15px;
    }

    .story-content {
        padding: 25px;
    }

    .story-title {
        font-size: 22px;
    }

    .stats {
        padding: 12px 15px;
    }

    .value {
        font-size: 18px;
    }
}

/* Velilerimizden Geri Bildirimler Bölümü - Modern Tasarım */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%233b82f6' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.testimonials-container {
    position: relative;
    z-index: 1;
}

.testimonial-carousel {
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 18, 79, 0.08);
    padding: 30px;
    margin: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-left: 4px solid var(--primary);
    position: relative;
    opacity: 1;
    transform: translateY(0);
    display: block; /* Varsayılan olarak görünür */
}

.testimonial-card.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 18, 79, 0.12);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--primary);
    opacity: 0.15;
    font-size: 4rem;
}

.testimonial-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid var(--primary);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0 0 5px;
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #718096;
}

.testimonial-rating {
    margin-top: 10px;
    color: #f59e0b;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 15px;
}

.carousel-control {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 18, 79, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.carousel-control:hover {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.05);
}

.carousel-control:focus {
    outline: none;
}

.carousel-control i {
    font-size: 1.2rem;
    color: #4a5568;
    transition: all 0.2s ease;
}

.carousel-control:hover i {
    color: #ffffff;
}

.carousel-control.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Başarı Galerisi Bölümü - Modern Tasarım */
.gallery-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.03);
}

.gallery-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gallery-section .section-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--gray-color);
    max-width: 700px;
    margin: 15px auto 40px;
}

.gallery-container {
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 18, 79, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 250px;
    opacity: 1;
    transform: translateY(0);
    display: block; /* Varsayılan olarak görünür */
}

.gallery-item.hidden {
    display: none;
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 18, 79, 0.12);
    z-index: 2;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 18, 79, 0.8) 0%, rgba(0, 18, 79, 0) 100%);
    padding: 20px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

.gallery-category {
    font-size: 0.8rem;
    opacity: 0.8;
    margin: 5px 0 0;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-button {
    padding: 8px 20px;
    background: #f3f4f6;
    border: none;
    border-radius: 30px;
    color: #4b5563;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-button:hover, .filter-button.active {
    background: var(--primary);
    color: #ffffff;
}

.gallery-load-more {
    text-align: center;
    margin-top: 40px;
}

.btn-gallery-more {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 30px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gallery-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-gallery-more:hover {
    color: #ffffff;
}

.btn-gallery-more:hover::before {
    width: 100%;
}

.btn-gallery-more.loading {
    position: relative;
    color: transparent;
}

.btn-gallery-more.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* CTA Bölümü - Modern Tasarım */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1a56db 100%);
    position: relative;
    overflow: hidden;
    color: #ffffff;
    transition: all 0.5s ease;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.cta-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-highlight {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 1; /* Varsayılan olarak görünür */
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
    opacity: 1; /* Varsayılan olarak görünür */
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9; /* Varsayılan olarak görünür */
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-primary, .btn-cta-secondary {
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1; /* Varsayılan olarak görünür */
    display: inline-block;
}

.btn-cta-primary {
    background: #ffffff;
    color: var(--primary);
    border: none;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
}

.cta-feature-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 1; /* Varsayılan olarak görünür */
}

.cta-feature i {
    font-size: 1.2rem;
}

.cta-feature span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Galeri Animasyonları */
.gallery-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.gallery-item.show {
    opacity: 1;
    transform: translateY(0);
}

.btn-gallery-more.loading {
    position: relative;
    color: transparent;
}

.btn-gallery-more.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Testimonial Animasyonları */
.carousel-control.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.testimonial-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Tasarım Güncellemeleri */
@media (max-width: 992px) {
    .testimonial-card {
        padding: 25px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 20px;
    }

    .testimonial-quote {
        font-size: 3rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-section {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-buttons {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item {
        height: 200px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 12px 25px;
        font-size: 0.9rem;
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Yeni Sağ Başarı Hikayeleri Tasarımı */
.right-success-stories {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.right-success-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 18, 79, 0.08);
    padding: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(230, 235, 255, 0.5);
    position: relative;
}

.right-success-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 18, 79, 0.12);
}

.right-card-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.right-card-badge span:first-child {
    background: linear-gradient(135deg, rgba(92, 98, 252, 0.1), rgba(116, 128, 255, 0.1));
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.right-card-duration {
    color: var(--gray-color);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.right-card-duration::before {
    content: "\F552"; /* Bootstrap icons - clock */
    font-family: "bootstrap-icons";
    margin-right: 5px;
    font-size: 14px;
}

.right-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.4;
}

.right-card-progress {
    margin-bottom: 20px;
}

.right-card-progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 14px;
    color: var(--gray-color);
}

.right-progress {
    height: 8px;
    margin-bottom: 15px;
    background-color: #f0f3ff;
    border-radius: 4px;
    overflow: hidden;
}

.right-progress .progress-bar {
    background: linear-gradient(90deg, var(--primary), #4568dc);
    border-radius: 4px;
}

.right-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 5px;
}

.right-author-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.right-author-info {
    display: flex;
    flex-direction: column;
}

.right-author-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.right-author-info p {
    font-size: 13px;
    color: var(--gray-color);
    margin: 0;
}

.right-more-stories {
    text-align: center;
    margin-top: 15px;
}

.right-more-btn {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.right-more-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(8, 28, 158, 0.15);
}

.right-more-btn.reverse {
    background: var(--primary);
    color: white;
}

.right-more-btn.reverse:hover {
    background: transparent;
    color: var(--primary);
}

.more-success-stories {
    margin-top: 40px;
}

.stories-spinner-container {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.stories-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(92, 98, 252, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
}

/* Mobile Response */
@media (max-width: 992px) {
    .right-success-stories {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .right-success-card {
        padding: 20px;
    }

    .right-card-title {
        font-size: 16px;
    }
}

.gallery-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-button {
    padding: 10px 25px;
    background: #f8f9fa;
    border: none;
    border-radius: 30px;
    color: #4b5563;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-button:hover, .filter-button.active {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 28, 158, 0.2);
    transform: translateY(-2px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 18, 79, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 260px;
    opacity: 1;
    transform: translateY(0);
    display: block; /* Varsayılan olarak görünür */
    cursor: pointer;
    background: #fff;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 18, 79, 0.15);
    z-index: 2;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 18, 79, 0.9) 0%, rgba(0, 18, 79, 0) 100%);
    padding: 25px;
    color: #ffffff;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(0deg, rgba(0, 18, 79, 0.95) 0%, rgba(0, 18, 79, 0.5) 60%, rgba(0, 18, 79, 0) 100%);
}

.gallery-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.gallery-category {
    font-size: 0.9rem;
    opacity: 0.85;
    margin: 8px 0 0;
}

.btn-gallery-more {
    padding: 13px 35px;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 30px;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-gallery-more:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 20px rgba(0, 18, 79, 0.15);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .gallery-section .section-title {
        font-size: 36px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .filter-button {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 80px 0;
    }

    .gallery-section .section-title {
        font-size: 32px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-filter {
        gap: 8px;
    }

    .filter-button {
        padding: 7px 15px;
        font-size: 0.85rem;
    }

    .gallery-item {
        height: 230px;
    }
}

@media (max-width: 576px) {
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-section .section-title {
        font-size: 28px;
    }

    .gallery-section .section-subtitle {
        font-size: 16px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-filter {
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-button {
        margin-bottom: 8px;
        width: 45%;
        padding: 8px 10px;
        font-size: 0.8rem;
    }
}

/* Video Modal Styles - Modern & Professional */
.video-modal {
    padding-right: 0 !important;
}

.video-modal .modal-dialog {
    max-width: 900px;
    margin: 1.75rem auto;
}

.video-modal .modal-content {
    border: none;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background: #fff;
}

.video-modal .modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 30px;
    background: linear-gradient(to right, #f8f9ff, #ffffff);
}

.video-modal .modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    display: flex;
    align-items: center;
}

.video-modal .modal-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 22px;
    background: var(--primary);
    margin-right: 12px;
    border-radius: 2px;
}

.video-modal .btn-close {
    background: rgba(0, 0, 0, 0.05);
    padding: 8px;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
}

.video-modal .btn-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.video-modal .modal-body {
    padding: 0;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #f0f2f5;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.play-button-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 80px;
    z-index: 10;
    opacity: 0.9;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.play-button-large:hover {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
    color: var(--primary);
}

.video-placeholder-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
}

.video-modal .modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    background: #f8f9ff;
}

.modal-cta-buttons {
    display: flex;
    gap: 15px;
    margin-right: auto;
}

.modal-btn-close {
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    color: #666;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.modal-btn-close:hover {
    background: rgba(0, 0, 0, 0.05);
}

.modal-btn-action {
    padding: 10px 25px;
    border-radius: 30px;
    background: var(--primary);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal-btn-action:hover {
    background: var(--primary-dark, #071570);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.modal-btn-cta {
    padding: 10px 20px;
    border-radius: 30px;
    background: var(--primary-light, #4b6fda);
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.modal-btn-cta:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Backdrop styling for video modals */
.modal-backdrop.video-backdrop {
    opacity: 0.85 !important;
    backdrop-filter: blur(5px);
}

/* Animation for modal */
.video-modal.fade .modal-dialog {
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-modal.show .modal-dialog {
    transform: scale(1);
    opacity: 1;
}

@media (max-width: 992px) {
    .video-modal .modal-dialog {
        max-width: 90%;
    }

    .video-modal .modal-footer {
        flex-direction: column;
        gap: 15px;
    }

    .modal-cta-buttons {
        margin-right: 0;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .video-modal .modal-title {
        font-size: 1.2rem;
    }

    .modal-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .modal-btn-action, .modal-btn-cta, .modal-btn-close {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .play-button-large {
        font-size: 60px;
    }
}
.logo-item{
    width: 203px;
}
.process-timeline{
    max-width: 100%;
}
.kurumsal-page section {
    padding: 52px 0 53px 0;
}
.process-step {
    margin-bottom: 19px;
}
.kurumsal-hero {
    padding: 80px 0 94px;
}
.testimonial-controls {
    margin-top: 178px;
}
.testimonial-text{
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}
.testimonial-card.active {
    transform: translateX(59px) scale(0.8);
}
@media (max-width: 768px) {
    .testimonial-card.active {
        transform: translateX(0px) scale(0.8);
        width: 100%;
    }
}
.select2-container .select2-selection--single {
    height: 53px !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--white);
    padding: 12px 16px;
    border-radius: var(--border-radius-sm) !important;
}
.d-contents{
    display: contents!important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #ffffff !important;
    line-height: 45px !important;
    font-size: 13px;
    padding-left: 0 !important;
}
@media (max-width: 992px) {
    .hero-visuals {
        display: none!important;
    }
}
.video-modal .btn-close {
    background: rgba(0, 0, 0, 0.05);
    padding: 3px;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3sease;
    line-height: 12px;
    font-size: 21px;
}
.modal-author-image{
    width: 50px;
    border-radius: 100%;
    height: 50px;
    padding: 3px;
    border: 1px solid;
    margin-right: 13px;
}
.modal-story-subject{
    font-size: 15px;
    font-weight: 600;
}
.modal-story-rating .bi{
    color: #FFC107;
}
.modal-author-info h4{
    font-size: 14px;
    margin-bottom: 8px;
}
.result-label{
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 9px;
    margin-top: 13px;
}
.progress-value{
    margin-top: 9px;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #f5f7fa;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.title-container {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.scroll-button {
    width: 40px;
    height: 40px;
    background: #081C9E;
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.scroll-button.left {
    left: 10px;
}

.scroll-button.right {
    right: 10px;
}

.testimonials-wrapper {
    overflow-x: hidden;
    position: relative;
}

.testimonials-container {
    display: flex;
    transition: transform 0.5s ease;
    transform: translateX(0);
}

.testimonial {
    flex: 0 0 33.3333%;
    min-width: 300px;
    padding: 0 15px;
    margin-bottom: 30px;
    box-sizing: border-box;
}

.testimonial-content {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 30px;
    height: 100%;
    border-left: 4px solid #081C9E;
    position: relative;
}

.quote-mark {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #081C9E;
    opacity: 0.15;
    font-size: 60px;
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    background-color: #eee;
}

.author-name {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.author-role {
    margin: 0;
    font-size: 14px;
    color: #777;
}

.rating {
    margin-top: 5px;
    color: #FFB400;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.page-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    margin: 0 5px;
}

.page-dot.active {
    background-color: #081C9E;
}
.testimonials-section .section-title::after{
    content: inherit!important;
}
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #081C9E, #1a56db);
    position: relative;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
}

.hero-section .background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width=\'100\' height=\'100\' viewBox=\'0 0 100 100\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cpath d=\'M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z\' fill=\'%23ffffff\' fill-opacity=\'0.1\' fill-rule=\'evenodd\'/%3E%3C/svg%3E');
    opacity: 0.5;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-section .highlight-box {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-section .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.hero-section .hero-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-section .button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-section .primary-btn,
.hero-section .secondary-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-section .primary-btn {
    background: #ffffff;
    color: #081C9E;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.hero-section .secondary-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-section .stats-group {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-section .stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}
.video-card .author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-color);
}
