.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--accent-green);
}

        .slider-container {
            position: relative;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .video-slider {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
        }

        .video-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            gap: 20px;
        }

        .video-slide {
            flex: 0 0 auto;
            width: 280px;
            height: 500px;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border: 3px solid #4ade80;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .video-slide:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(74, 222, 128, 0.3);
        }

        .video-slide video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.7) 100%);
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .video-slide:hover .video-overlay {
            opacity: 1;
        }

        .video-info h4 {
            color: #ffffff;
            font-size: 1.1rem;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .video-info p {
            color: #b8e6d1;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .logo-button-wrapper {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 10px; /* Space between logo and play button */
    z-index: 10;
}

.slide-logo {
        z-index: 12;
    margin-right: 195px;
    margin-bottom: 18px;
    width: 50px; /* Adjust size as needed */
    height: 50px;
    object-fit: contain;
    border-radius: 50%; /* Make circular if desired */
    background-color: rgba(255, 255, 255, 0.2); /* Optional background for contrast */
    padding: 5px; /* Optional padding */
    transition: transform 0.3s ease;
}

.slide-logo:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}

.play-button {
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    bottom: 10px;
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    line-height: 1;
    transition: background 0.3s ease;
}

.play-button:hover {
    background: #4ade80;
}

.play-button.playing:before {
    content: "Pause";
}

.play-button:before {
    content: "Play";
    color: white;
}

        /* .video-slide.playing .play-button {
            opacity: 0;
            pointer-events: none;
        } */

        .slider-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 30px;
        }

        .control-btn {
            background: rgba(74, 222, 128, 0.2);
            border: 2px solid #4ade80;
            color: #4ade80;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .control-btn:hover {
            background: #4ade80;
            color: #ffffff;
            transform: scale(1.1);
        }

        .control-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .dots-container {
            display: flex;
            gap: 10px;
            justify-content: center;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #4ade80;
            transform: scale(1.2);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .video-slide {
                width: 250px;
                height: 450px;
            }

            .section-title h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .video-slide {
                width: 220px;
                height: 400px;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .section-title p {
                font-size: 1rem;
            }

            .slider-container {
                padding: 30px 15px;
            }
        }

        @media (max-width: 480px) {
            .video-slide {
                width: 200px;
                height: 360px;
            }

            .section-title h2 {
                font-size: 1.5rem;
            }

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

            .control-btn {
                width: 40px;
                height: 40px;
            }
        }