

:root {
            --primary-color: #FF5722;
            --secondary-color: #00BCD4;
            --dark-color: #1A1A1A;
            --light-gray: #F5F5F5;
            --medium-gray: #6C757D;
            --white: #FFFFFF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--medium-gray);
            background-color: var(--white);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header - Minimalist */
        .header {
            background: var(--white);
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-color);
        }

        .logo .accent {
            color: var(--secondary-color);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--medium-gray);
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--secondary-color);
        }

        .nav-buttons {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .nav-btn {
            padding: 0.5rem 1.5rem;
            background: var(--primary-color);
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .nav-btn:hover {
            background: #E64A19;
        }

        .login-btn {
            padding: 0.5rem 1.5rem;
            background: transparent;
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 500;
            border: 1px solid var(--secondary-color);
            transition: all 0.3s ease;
        }

        .login-btn:hover {
            background: var(--secondary-color);
            color: white;
        }

        /* Hero Section - Left aligned, no background */
        .hero {
            position: relative;
            height: 100vh;
            overflow: hidden;
            margin-top: 80px;
        }

        .hero-slider {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide:nth-child(1) {
            background-image: url('https://images.unsplash.com/photo-1431324155629-1a6deb1dec8d?w=1920&h=1080&fit=crop');
        }

        .hero-slide:nth-child(2) {
            background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=1920&h=1080&fit=crop');
        }

        .hero-slide:nth-child(3) {
            background-image: url('https://images.unsplash.com/photo-1606107557195-0e29a4b5b4aa?w=1920&h=1080&fit=crop');
        }

        .hero-content {
            text-align: left;
            color: white;
            max-width: 600px;
            margin-left: 0;
            padding: 0 20px;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-text .highlight {
            color: var(--primary-color);
        }

        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            max-width: 500px;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            padding: 1rem 2.5rem;
            background: var(--primary-color);
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            background: #E64A19;
        }

        .btn-secondary {
            padding: 1rem 2.5rem;
            background: transparent;
            color: white;
            text-decoration: none;
            font-weight: 600;
            border: 2px solid white;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--secondary-color);
            border-color: var(--secondary-color);
        }

        /* Slider Navigation */
        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
        }

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

        .slider-dot.active {
            background: var(--primary-color);
        }

        .slider-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            color: rgba(255, 255, 255, 0.7);
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(0, 0, 0, 0.2);
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-arrows:hover {
            color: white;
            background: var(--primary-color);
        }

        .slider-prev {
            left: 30px;
        }

        .slider-next {
            right: 30px;
        }

        /* Main Content Layout */
        .main-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            padding: 80px 0;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* Content Area */
        .content-area {
            display: flex;
            flex-direction: column;
            gap: 4rem;
        }

        /* Stats Section - Minimalist */
        .stats-section {
            padding: 60px 0;
            background: var(--light-gray);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
        }

        .stat-card {
            background: white;
            padding: 2rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            border-left: 3px solid var(--secondary-color);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

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

        /* Section Titles */
        .section-title {
            margin-bottom: 2rem;
        }

        .section-title h2 {
            font-size: 2rem;
            color: var(--dark-color);
            margin-bottom: 0.5rem;
        }

        .section-title p {
            color: var(--medium-gray);
        }

        /* Programs Section - Minimalist */
        .programs-section {
            background: white;
        }

        .programs-list {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .program-card {
            background: white;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            border-left: 3px solid var(--secondary-color);
        }

        .program-card:hover {
            transform: translateX(5px);
        }

        .program-content {
            padding: 2rem;
        }

        .program-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .program-content h3 {
            color: var(--dark-color);
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .program-type-badge {
            background: var(--primary-color);
            color: white;
            padding: 0.3rem 0.8rem;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .program-meta {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: var(--medium-gray);
            flex-wrap: wrap;
        }

        .program-meta span {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .program-description {
            margin-bottom: 1.5rem;
            color: var(--medium-gray);
            line-height: 1.6;
        }

        .program-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid #E9ECEF;
        }

        .program-price {
            color: var(--secondary-color);
            font-weight: 700;
            font-size: 1.2rem;
        }

        .enrollment-status {
            font-size: 0.9rem;
        }

        .spots-available {
            color: #4CAF50;
            font-weight: 600;
        }

        .spots-limited {
            color: #FF9800;
            font-weight: 600;
        }

        .spots-full {
            color: var(--primary-color);
            font-weight: 600;
        }


            color: var(--dark-color);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .post-content p {
            color: var(--medium-gray);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            line-height: 1.5;
        }

        .post-meta {
            font-size: 0.8rem;
            color: var(--secondary-color);
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .post-type-indicator {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            background: var(--light-gray);
            color: var(--medium-gray);
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-size: 0.75rem;
            font-weight: 500;
        }

        .post-views {
            display: flex;
            align-items: center;
            gap: 0.2rem;
        }

        .post-author {
            font-weight: 500;
        }

        /* Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .sidebar-widget {
            background: var(--light-gray);
            padding: 2rem;
        }

        .sidebar-widget h3 {
            color: var(--dark-color);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        /* Newsletter Widget */
        .newsletter-input {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #E9ECEF;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .newsletter-btn {
            width: 100%;
            padding: 0.8rem;
            background: var(--primary-color);
            color: white;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .newsletter-btn:hover {
            background: #E64A19;
        }

        /* Categories Widget */
        .categories-list {
            list-style: none;
        }

        .categories-list li {
            padding: 0.8rem 0;
            border-bottom: 1px solid #E9ECEF;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .categories-list li:last-child {
            border-bottom: none;
        }

        .categories-list a {
            color: var(--medium-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .categories-list a:hover {
            color: var(--secondary-color);
        }

        .category-count {
            background: #E9ECEF;
            color: var(--medium-gray);
            padding: 0.2rem 0.5rem;
            font-size: 0.8rem;
        }

        /* Events Widget */
        .events-widget .event-item {
            padding: 1rem 0;
            border-bottom: 1px solid #E9ECEF;
        }

        .events-widget .event-item:last-child {
            border-bottom: none;
        }

        .event-date-mini {
            background: var(--secondary-color);
            color: white;
            padding: 0.3rem 0.5rem;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 0.5rem;
        }

        .event-title-mini {
            color: var(--dark-color);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .event-location-mini {
            color: var(--medium-gray);
            font-size: 0.8rem;
        }

        /* Social Media Widget */
        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: var(--secondary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary-color);
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: var(--primary-color);
            color: white;
            text-align: center;
            margin-top: 4rem;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .btn-white {
            background: white;
            color: var(--primary-color);
            padding: 1rem 2rem;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        /* Footer */
        .footer {
            background: var(--dark-color);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: #CCCCCC;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--secondary-color);
        }

        .footer-bottom {
            border-top: 1px solid var(--medium-gray);
            margin-top: 2rem;
            padding-top: 2rem;
            text-align: center;
            color: #CCCCCC;
        }
		
		/* Posts Container */
.posts-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

/* Individual Post */
.post {
  border: 1px solid #e0e0e0;
  margin-bottom: 30px;
  background: #ffffff;
  padding: 20px;
}

.post:last-child {
  margin-bottom: 0;
}

/* Post Header */
.post-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.post-avatar {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: #666;
}

.post-user-info {
  flex: 1;
}

.post-username {
  font-weight: 600;
  color: #000;
  margin: 0 0 2px 0;
  font-size: 14px;
}

.post-timestamp {
  color: #666;
  font-size: 12px;
  margin: 0;
}

/* Post Content */
.post-content {
  margin-bottom: 15px;
}

.post-text {
  color: #000;
  line-height: 1.4;
  margin: 0 0 15px 0;
  font-size: 14px;
}

/* Post Images */
.post-images {
  margin: 15px 0;
}

.post-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
  border: 1px solid #e0e0e0;
}

.post-image:last-child {
  margin-bottom: 0;
}

/* Multiple images grid */
.post-images.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.post-images.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.post-images.grid-2 .post-image,
.post-images.grid-3 .post-image {
  margin-bottom: 0;
  aspect-ratio: 1;
  object-fit: cover;
}

/* Post Actions */
.post-actions {
  display: flex;
  gap: 20px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.post-action {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #666;
  font-size: 12px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.post-action:hover {
  color: #000;
}

.post-action-icon {
  width: 16px;
  height: 16px;
  background: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

/* Update Posts (smaller variant) */
.post.update {
  padding: 15px;
  margin-bottom: 20px;
  border-left: 3px solid #000;
}

.post.update .post-text {
  font-size: 13px;
  margin-bottom: 10px;
}

.post.update .post-header {
  margin-bottom: 10px;
  padding-bottom: 8px;
}

.post.update .post-avatar {
  width: 32px;
  height: 32px;
}

/* Status indicators */
.post-status {
  font-size: 11px;
  color: #999;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 480px) {
  .posts-container {
    padding: 15px;
  }
  
  .post {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .post-images.grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  
  .post-actions {
    gap: 15px;
  }
}

        /* Videos Section - With YouTube thumbnails */
        .videos-section {
            padding: 80px 0;
            background: var(--light-gray);
        }

        .videos-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .large-video-card {
            background: white;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .video-thumbnail {
            height: 300px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            cursor: pointer;
        }

        .video-thumbnail::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.3);
            transition: background 0.3s ease;
        }

        .video-thumbnail:hover::after {
            background: rgba(0,0,0,0.1);
        }

        .video-thumbnail i {
            font-size: 4rem;
            color: white;
            z-index: 1;
            position: relative;
        }

        .small-video-card {
            background: white;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .small-video-card .video-thumbnail {
            height: 140px;
        }

        .small-video-card .video-thumbnail i {
            font-size: 2.5rem;
        }

        .video-content {
            padding: 2rem;
        }

        .small-video-card .video-content {
            padding: 1.25rem;
        }

        .view-all-card {
            background: var(--secondary-color);
            padding: 1.5rem;
            text-align: center;
            color: white;
        }

        .view-all-card i {
            font-size: 2rem;
            margin-bottom: 0.75rem;
            display: block;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .nav-buttons {
                flex-direction: column;
                gap: 0.5rem;
            }

            .nav-btn, .login-btn {
                padding: 0.4rem 1rem;
                font-size: 0.9rem;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: flex-start;
            }

            .btn-primary, .btn-secondary {
                width: 200px;
                text-align: center;
            }

            .main-layout {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

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

            .post-item {
                flex-direction: column;
                text-align: center;
            }

            .post-image {
                align-self: center;
            }

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

            .program-meta {
                flex-direction: column;
                gap: 0.5rem;
            }

            .program-footer {
                flex-direction: column;
                align-items: stretch;
                gap: 1rem;
            }

            .slider-arrows {
                display: none;
            }

            .videos-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .small-videos-container {
                flex-direction: row;
                overflow-x: auto;
            }

            .small-video-card {
                min-width: 280px;
            }

            .large-video-card .video-thumbnail {
                height: 220px;
            }
        }

        @media (max-width: 480px) {
            .nav-buttons {
                flex-direction: row;
                gap: 0.5rem;
            }
            
            .nav-btn, .login-btn {
                padding: 0.3rem 0.8rem;
                font-size: 0.8rem;
            }

            .main-layout {
                padding-left: 10px;
                padding-right: 10px;
            }

            .hero-text h1 {
                font-size: 2rem;
            }

            .hero-text p {
                font-size: 1rem;
            }

            .hero-content {
                padding: 0 10px;
            }
        }
  