﻿* {
    box-sizing: border-box;
}

html {
    font-size: 100%; /* 16px default */
}
body {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}
/* Responsive Design */
    @media (max-width: 768px) {
        .video-header h2 {
            font-size: 24px;
        }

            .video-header h2 i {
                font-size: 24px;
            }

        .video-header p {
            font-size: 14px;
        }
    }

    .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.video-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    text-align: left;
    transition: transform 0.2s;
}

    .video-card:hover {
        transform: translateY(-5px);
    }

.video-thumb {
    position: relative;
    height: 180px;
    overflow: hidden;
}

    .video-thumb .blur {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: blur(12px);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .video-thumb .main {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: relative;
        z-index: 2;
    }

    .video-thumb .play {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 32px;
        color: white;
        background: rgba(0,0,0,0.5);
        border-radius: 50%;
        padding: 10px 15px;
        z-index: 3;
        cursor: pointer;
    }

    .video-thumb .duration {
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(0,0,0,0.75);
        color: white;
        font-size: 12px;
        padding: 2px 6px;
        border-radius: 4px;
        z-index: 3;
    }

.video-text {
    padding: 16px;
}

    .video-text h4 {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 8px;
        color: #1a1a1a;
    }

    .video-text p {
        font-size: 13px;
        color: #666;
        margin: 0;
    }
.hero-section {
    display: flex;
    width: 100%;
    height: 500px;
    overflow: hidden;
}
.video-header {
    background-color: #dedede;
    text-align: center;
    padding: 80px 20px;
    top: -57px;
    width: 100%;
    left: -92px;
    height: 400px;
}

    .video-header h2 {
        font-size: 24px;
        font-weight: 700;
        color: #0046ff;
    }

    .video-header span {
        font-weight: 700;
        color: #0046ff;
    }

    .video-header p {
        font-size: 14px;
        color: #444;
        margin-top: 10px;
    }
