* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f9fafb;
    color: #1f2937;
    line-height: 1.6;
}

/* Header Styles */
.header {
    position: relative;
    background: linear-gradient(135deg, #581c87 0%, #7e22ce 50%, #4338ca 100%);
    overflow: hidden;
    padding: 6rem 1rem;
    text-align: center;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
}

.circle-1 {
    width: 16rem;
    height: 16rem;
    background-color: #2563eb;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
}

.circle-2 {
    width: 24rem;
    height: 24rem;
    background-color: #4f46e5;
    bottom: 0;
    right: 0;
    transform: translate(25%, 25%);
}

.circle-3 {
    width: 12rem;
    height: 12rem;
    background-color: #8b5cf6;
    top: 50%;
    right: 25%;
    filter: blur(40px);
}

.circle-4 {
    width: 8rem;
    height: 8rem;
    background-color: #ec4899;
    top: 25%;
    left: 33%;
    filter: blur(40px);
}

.header-content {
    position: relative;
    z-index: 1;
}

.header h1 {
    font-size: 3.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 0.5rem;
    color: rgb(37 99 235);
    font-size: 0.875rem;
}

.breadcrumb .active {
    font-weight: 500;
}

/* Content Section */
.content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 1rem;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #4b5563;
}

/* Webinar Grid */
.webinar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

/* Webinar Card */
.webinar-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.webinar-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.card-image {
    position: relative;
    height: 14rem;
    overflow: hidden;
    cursor: pointer;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.webinar-card:hover .card-image img {
    transform: scale(1.1);
}

.category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #2563eb;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
    transition: color 0.3s ease;
}

.webinar-card:hover .card-content h3 {
    color: #2563eb;
}

.card-date {
    display: flex;
    align-items: center;
    color: #4b5563;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: #2563eb;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1d4ed8;
}

.arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.webinar-card:hover .arrow {
    transform: translateX(0.25rem);
}

/* Video Page Styles */
.back-nav {
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem;
}

.back-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-button:hover {
    color: #2563eb;
}

.video-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.video-wrapper {
    max-width: 80rem;
    margin: 0 auto;
}

.video-player {
    position: relative;
    background: black;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    margin-bottom: 2rem;
    padding-bottom: 56.25%;
}

.video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-details {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.badges {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.category-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f3e8ff;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    color: #2563eb;
    font-weight: 500;
    font-size: 0.875rem;
}

.date-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4b5563;
    font-size: 0.875rem;
}

.video-details h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.description h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.description h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.description p {
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.description ul {
    list-style: disc;
    margin-left: 1.5rem;
    color: #4b5563;
}

.description li {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2.5rem;
    }

    .webinar-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .video-details h1 {
        font-size: 1.875rem;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 2rem;
    }

    .header {
        padding: 4rem 1rem;
    }

    .content {
        padding: 3rem 1rem;
    }
}

/* Workshop Specific Styles */
.workshop-header {
  background: 
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),  url("../img/webinar1.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.workshop-badge {
    color: #2563eb;
}

.workshop-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    color: #4b5563;
    font-size: 0.875rem;
}

.workshop-card:hover .card-content h3 {
    color: #2563eb;
}

.workshop-card .read-more {
    color: #2563eb;
}

.workshop-card .read-more:hover {
    color: #1d4ed8;
}

/* Workshop Detail Page Styles */
.workshop-banner {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.workshop-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.workshop-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1.5rem;
}

.workshop-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f3f4f6;
    padding: 1.25rem;
    border-radius: 0.5rem;
    border-left: 4px solid #0284c7;
}

.info-icon {
    width: 2rem;
    height: 2rem;
    color: #0284c7;
    flex-shrink: 0;
}

.info-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
}

@media (max-width: 768px) {
    .workshop-banner {
        height: 300px;
    }

    .workshop-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .workshop-banner {
        height: 250px;
    }
}
.webinar-header {
  background: 
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),  url("../img/webinar1.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
