
    .modern-card {
        background: #fff;
        border-radius: 40px !important;
        padding: 26px 15px !important;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        border: 2px solid #00b2c0 !important;
    }
    
    .modern-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .modern-card .icon-wrapper {
        margin-bottom: 20px;
    }
    
    .modern-card .icon-wrapper i {
        display: block;
    }
    
    .modern-card h5 {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: #00b2c0;
        line-height: 1.3;
    }
    
    .modern-card p {
        font-size: 1rem;
        color: #000;
        line-height: 1.5;
        margin: 0;
        flex-grow: 1;
        font-weight: 500;
    }
    
    .single-item {
        margin-bottom: 30px;
    }
    
    @media (max-width: 768px) {
        .modern-card {
            padding: 26px 15px;
            border-radius: 35px;
        }
        
        .modern-card .icon-wrapper i {
            font-size: 2.2rem;
        }
        
        .modern-card h5 {
            font-size: 1.2rem;
        }
        
        .modern-card p {
            font-size: 0.95rem;
        }
        .hizmet {
        margin-right: -10px;
        margin-left: -10px;
        }
    }
    
    /* FAQ Modern Styles */
    .modern-accordion .card-header h4 {
        transition: all 0.3s ease;
    }
    
    .modern-accordion .card-header h4:hover {
        transform: translateX(5px);
    }
    
    .modern-accordion .card-header h4 i.fa-chevron-down {
        transition: transform 0.3s ease;
    }
    
    .modern-accordion .card-header h4[aria-expanded="true"] i.fa-chevron-down {
        transform: rotate(180deg);
    }
    
    .modern-faq-card {
        transition: all 0.3s ease;
    }
    
    .modern-faq-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(12, 184, 182, 0.15) !important;
    }
    
    .contact-info {
        transition: all 0.3s ease;
    }
    
    .contact-info:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(12, 184, 182, 0.2) !important;
    }
    
    .faq-area {
        position: relative;
        overflow: hidden;
    }
    
    .faq-area::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(12, 184, 182, 0.03) 0%, transparent 70%);
        pointer-events: none;
    }
    
    /* Slider Modern Styles */
    .slider-content {
        padding: 20px 0;
    }
    
    .slider-buttons .btn {
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }
    
    .slider-buttons .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(12, 184, 182, 0.3);
    }
    /* Modern Video Container Styles */
    .slider-video {
        position: relative;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .slider-video::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(12, 184, 182, 0.1) 0%, rgba(8, 160, 158, 0.05) 100%);
        border-radius: 40px;
        z-index: 1;
        pointer-events: none;
    }
    
    .slider-video video {
        position: relative;
        z-index: 2;
        width: 100%;
        height: 500px;
        border-radius: 30px;
        box-shadow: 0 25px 50px rgba(12, 184, 182, 0.2);
        transition: all 0.4s ease;
        border: 3px solid rgba(255, 255, 255, 0.8);
    }
    
    .slider-video:hover video {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 35px 70px rgba(12, 184, 182, 0.3);
    }
    
    /* Video Play Button Overlay */
    .video-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 3;
        background: rgba(12, 184, 182, 0.9);
        border-radius: 50%;
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        opacity: 0.8;
    }
    
    .video-overlay:hover {
        background: rgba(12, 184, 182, 1);
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
    
    .video-overlay i {
        color: white;
        font-size: 24px;
        margin-left: 4px;
    }
    
    /* Video Container */
    .video-container {
        position: relative;
        width: 100%;
        overflow: hidden;
    }
    
    /* Video Info Styles */
    .video-info {
        opacity: 0;
        animation: fadeInUp 1s ease 0.5s forwards;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Video Loading Animation */
    .video-loading {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 4;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
        50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.7; }
        100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    }
    
    .video-loading i {
        color: #00b2c0;
        font-size: 20px;
        animation: spin 1s linear infinite;
    }
    
    @keyframes spin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }
    
    /* Floating Elements */
    .floating-element {
        position: absolute;
        background: rgba(12, 184, 182, 0.1);
        border-radius: 50%;
        animation: float 6s ease-in-out infinite;
    }
    
    .floating-element:nth-child(1) {
        width: 20px;
        height: 20px;
        top: 10%;
        right: 10%;
        animation-delay: 0s;
    }
    
    .floating-element:nth-child(2) {
        width: 15px;
        height: 15px;
        bottom: 20%;
        left: 5%;
        animation-delay: 2s;
    }
    
    .floating-element:nth-child(3) {
        width: 25px;
        height: 25px;
        top: 60%;
        right: 5%;
        animation-delay: 4s;
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
    }
    
    @media (max-width: 992px) {
        .slider-content h2 {
            font-size: 2.5rem !important;
        }
        
        .slider-content p {
            font-size: 1.1rem !important;
        }
        
        .slider-buttons .btn {
            padding: 12px 25px !important;
            font-size: 1rem !important;
            margin-bottom: 10px !important;
        }
        
        .slider-video {
            max-width: 450px;
            padding: 15px;
        }
        
        .slider-video video {
            border-radius: 25px;
        }
        
        .video-overlay {
            width: 70px;
            height: 70px;
        }
        
        .video-overlay i {
            font-size: 20px;
        }
    }
    
    @media (max-width: 768px) {
        .slider-content h2 {
            font-size: 2rem !important;
        }
        
        .slider-content p {
            font-size: 1rem !important;
        }
        
        .slider-buttons .btn {
            padding: 10px 20px !important;
            font-size: 0.9rem !important;
            display: block !important;
            width: 100%;
            margin-right: 0 !important;
            margin-bottom: 15px !important;
        }
        
        .slider-video {
            max-width: 100%;
            padding: 10px;
            margin-top: 30px;
        }
        
        .slider-video video {
            border-radius: 20px;
            border-width: 2px;
        }
        
        .video-overlay {
            width: 60px;
            height: 60px;
        }
        
        .video-overlay i {
            font-size: 18px;
        }
        
        .floating-element {
            display: none;
        }
    }
    
    @media (max-width: 576px) {
        .slider-video {
            padding: 5px;
        }
        
        .slider-video video {
            border-radius: 15px;
        }
        
        .video-overlay {
            width: 50px;
            height: 50px;
        }
        
        .video-overlay i {
            font-size: 16px;
        }
    }
    .header-section {
            background: linear-gradient(135deg, #00b2c0, #08a09e);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .header-section h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .header-section p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 514px;
            margin: 0 auto;
        }
        
        .map-container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(12, 184, 182, 0.1);
            overflow: hidden;
            max-width: 1200px;
        }
        
        #map {
            height: 514px;
            width: 100%;
            border-radius: 20px;
        }
        
        .bayi-info {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin: 20px 0;
        }
        
        .bayi-info h3 {
            color: #00b2c0;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .bayi-info p {
            color: #666;
            margin-bottom: 10px;
        }
        
        .bayi-info i {
            color: #00b2c0;
            margin-right: 10px;
            width: 20px;
        }
        
        .custom-popup {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .custom-popup h4 {
            color: #00b2c0;
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .custom-popup p {
            margin: 5px 0;
            color: #333;
            font-size: 0.9rem;
        }
        
        .custom-popup i {
            color: #00b2c0;
            margin-right: 8px;
            width: 15px;
        }
        
        .stats-section {
            background: white;
            padding: 50px 0;
            margin: 50px 0;
        }
        
        .stat-item {
            text-align: center;
            padding: 30px;
        }
        
        .stat-item i {
            font-size: 3rem;
            color: #00b2c0;
            margin-bottom: 20px;
        }
        
        .stat-item h3 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
        }
        
        .stat-item p {
            color: #666;
            font-size: 1.1rem;
        }
        
        @media (max-width: 768px) {
            .header-section h1 {
                font-size: 2rem;
            }
            
            .header-section p {
                font-size: 1rem;
            }
            
            #map {
                height: 400px;
            }
            
            .map-container {
                margin: 20px;
            }
        }
         .swiper {
      width: 100%;
      padding-top: 50px;
      padding-bottom: 50px;
      height: 63%;
    }

    .swiper-slide {
      background-position: center;
      background-size: cover;
      width: 300px;
      height: 300px;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
    }
    
    .swiper-slide video {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(12, 184, 182, 0.2);
      transition: all 0.3s ease;
    }
    
    .swiper-slide video:hover {
      transform: scale(1.02);
      box-shadow: 0 15px 40px rgba(12, 184, 182, 0.3);
    }
    
    /* Video Gallery Custom Styles */
    .video-gallery-wrapper {
        overflow: hidden;
    }
    
    .mySwiper {
        width: 100%;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .mySwiper .swiper-slide {
        background-position: center;
        background-size: cover;
        width: 300px;
        height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .video-card-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        background: #fff;
        transition: all 0.3s ease;
    }
    
    .video-card-wrapper:hover {
        box-shadow: 0 15px 40px rgba(0, 178, 192, 0.3);
        transform: translateY(-5px);
    }
    
    .video-card-wrapper video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
        display: block;
    }
    
    .video-plus-icon {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        background: rgba(0, 178, 192, 0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        cursor: pointer;
        transition: all 0.3s ease;
        color: #fff;
        font-size: 16px;
    }
    
    .video-plus-icon:hover {
        background: rgba(0, 178, 192, 1);
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(0, 178, 192, 0.4);
    }
    
    .mySwiper .swiper-pagination {
        position: relative;
        margin-top: 30px;
    }
    
    .mySwiper .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: #ddd;
        opacity: 1;
        transition: all 0.3s ease;
    }
    
    .mySwiper .swiper-pagination-bullet-active {
        background: #00b2c0;
        transform: scale(1.2);
    }
    
    /* Coverflow efekt ayarları için özel stiller */
    .swiper-slide-shadow-left,
    .swiper-slide-shadow-right {
        background: transparent;
    }
    
    @media (max-width: 768px) {
        .mySwiper .swiper-slide {
            width: 250px;
            height: 500px;
        }
    }
    
    @media (max-width: 576px) {
        .mySwiper .swiper-slide {
            width: 200px;
            height: 400px;
        }
    }