@charset "UTF-8";
/* viharitv.css — BATTLE TESTED & PERFECTLY RESPONSIVE */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	overflow-x: hidden;
	max-width: 100%;
	width: 100%;
}

body {
	background: #0a0a0a;
	color: #e0e0e0;
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
}

/* ===== NAVBAR ===== */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(10, 10, 10, 0.98);
	backdrop-filter: blur(12px);
	z-index: 1000;
	padding: 14px 5%;
	border-bottom: 1px solid #222;
}

.nav-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
}

.logo-img {
	height: 42px;
	width: auto;
	display: block;
}

/* Mobile menu toggle */
.menu-toggle {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 1001;
	width: 30px;
	height: 30px;
	justify-content: center;
	align-items: center;
}

.menu-toggle span {
	width: 25px;
	height: 3px;
	background: #e0e0e0;
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 2px;
	display: block;
}

.menu-toggle.active span:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -6px);
}

.nav-links {
	display: flex;
	gap: 28px;
	transition: all 0.3s ease;
}

.nav-links a {
	color: #e0e0e0;
	text-decoration: none;
	font-weight: 500;
	font-size: 1rem;
	transition: color .3s;
	white-space: nowrap;
}

.nav-links a:hover, .nav-links a.active {
	color: #e50914;
}

.search-bar {
	display: flex;
	background: #1a1a1a;
	border-radius: 50px;
	overflow: hidden;
	width: 300px;
	max-width: 100%;
}

.search-bar input {
	background: none;
	border: none;
	padding: 12px 16px;
	color: white;
	font-size: 0.95rem;
	width: 100%;
	outline: none;
}

.search-bar button {
	background: #e50914;
	color: white;
	border: none;
	padding: 0 18px;
	cursor: pointer;
}

.search-bar button:hover {
	background: #c20710;
}

/* ===== HERO SECTIONS ===== */
.hero {
	position: relative;
	height: 80vh;
	min-height: 600px;
	overflow: hidden;
	border-radius: 0 0 20px 20px;
	margin-top: 70px;
	cursor: pointer;
	width: 100%;
}

.about-hero, .team-hero {
	position: relative;
	height: 70vh;
	min-height: 500px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	margin-top: 70px;
}

.hero-bg-placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('https://picsum.photos/seed/ladakh/50/30?blur=5') center/cover;
	filter: blur(10px);
	transform: scale(1.1);
	z-index: 1;
}

.hero-bg-image, .hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 2;
	opacity: 0;
	transition: opacity .8s;
}

.hero-bg-image.loaded, .hero-bg {
	opacity: 1;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(229,9,20,0.3));
	z-index: 2;
}

.hero-content {
	position: absolute;
	bottom: 60px;
	left: 5%;
	max-width: 900px;
	width: 90%;
	z-index: 3;
	text-align: left;
}

.about-hero .hero-content, .team-hero .hero-content {
	position: relative;
	z-index: 3;
	max-width: 900px;
	padding: 0 5%;
	text-align: center;
}

.hero h1, .about-hero h1, .team-hero h1 {
	font-size: 4.2rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 16px;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
	color: white;
}

.hero .desc, .tagline {
	font-size: 1.45rem;
	line-height: 1.5;
	color: #ccc;
	margin-bottom: 24px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hero .meta {
	display: flex;
	gap: 24px;
	font-size: 1.1rem;
	font-weight: 500;
	margin-bottom: 28px;
	color: #aaa;
}

.play-btn {
	background: #e50914;
	color: white;
	border: none;
	padding: 18px 48px;
	font-size: 1.4rem;
	font-weight: 700;
	border-radius: 50px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: all .3s;
	box-shadow: 0 8px 30px rgba(229, 9, 20, 0.5);
}

.play-btn:hover {
	transform: scale(1.08);
	background: #c20710;
}

.hero-play-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 5rem;
	color: rgba(255, 255, 255, 0.85);
	opacity: 0;
	transition: opacity 0.3s;
	pointer-events: none;
	z-index: 3;
}

.hero:hover .hero-play-overlay {
	opacity: 1;
}

/* ===== PAGE HEADERS ===== */
.page-header {
	padding: 140px 0 80px;
	background: radial-gradient(ellipse at top, rgba(255,255,255,0.03), transparent 60%),
				linear-gradient(to bottom, #111 0%, #0a0a0a 100%);
	text-align: center;
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid #222;
	margin-top: 70px;
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('https://picsum.photos/seed/pages/1920/800') center/cover;
	opacity: 0.06;
	z-index: 0;
}

.page-title {
	font-size: 3.5rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 16px;
	text-shadow: 0 4px 20px rgba(0,0,0,0.6);
	position: relative;
	z-index: 1;
}

.page-subtitle {
	font-size: 1.3rem;
	color: #ccc;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.8;
	position: relative;
	z-index: 1;
}

/* ===== SECTIONS ===== */
.section {
	padding: 60px 5%;
}

.section h2 {
	font-size: 1.9rem;
	font-weight: 600;
	margin-bottom: 28px;
	color: #fff;
	border-left: 4px solid #e50914;
	padding-left: 14px;
}

.section-title {
	font-size: 2.4rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 20px;
	border-left: 5px solid #e50914;
	padding-left: 16px;
}

.section-subtitle {
	font-size: 1.1rem;
	color: #aaa;
	margin-bottom: 40px;
	text-align: center;
}

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

.text-center {
	text-align: center;
}

/* ===== VIDEO GRIDS ===== */
.video-grid, .video-row {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	width: 100%;
}

.video-row {
	overflow-x: auto;
	padding-bottom: 12px;
	scrollbar-width: thin;
}

.video-card {
	flex: 1 1 calc(25% - 24px);
	max-width: calc(25% - 24px);
	min-width: 280px;
	background: #1a1a1a;
	border-radius: 14px;
	overflow: hidden;
	transition: all .3s;
	cursor: pointer;
}

.video-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
}

.thumb-wrapper {
	position: relative;
	width: 100%;
	height: 200px;
	background: #000;
	overflow: hidden;
}

.thumb-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s;
}

.video-card:hover .thumb-wrapper img {
	transform: scale(1.08);
}

.duration {
	position: absolute;
	bottom: 8px;
	right: 8px;
	background: rgba(0, 0, 0, 0.8);
	color: white;
	padding: 4px 8px;
	font-size: 0.8rem;
	border-radius: 4px;
}

.video-card h3 {
	padding: 14px 14px 8px;
	font-size: 1.1rem;
	font-weight: 600;
}

.video-card .desc {
	padding: 0 14px;
	font-size: 0.9rem;
	color: #aaa;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.video-card .meta {
	padding: 8px 14px 14px;
	font-size: 0.85rem;
	color: #888;
}

/* ===== SKELETON LOADING ===== */
.skeleton {
	background: #1a1a1a;
	border-radius: 14px;
	overflow: hidden;
}

.skeleton .thumb-wrapper {
	background: #2a2a2a;
	animation: pulse 1.5s infinite ease-in-out;
}

.skeleton h3 {
	height: 16px;
	background: #2a2a2a;
	border-radius: 4px;
	margin: 12px 14px;
	animation: pulse 1.5s infinite ease-in-out;
}

.skeleton .desc {
	height: 32px;
	background: #2a2a2a;
	border-radius: 4px;
	margin: 8px 14px 12px;
	animation: pulse 1.5s infinite ease-in-out;
}

.skeleton .meta {
	height: 14px;
	background: #2a2a2a;
	border-radius: 4px;
	margin: 0 14px 14px;
	width: 70%;
	animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
	0%, 100% { opacity: 0.6; }
	50% { opacity: 1; }
}

/* ===== ABOUT PAGE STYLES ===== */
.mission-section, .team-intro-section {
	background: #111;
	padding: 80px 0;
}

.mission-text, .intro-text {
	font-size: 1.25rem;
	line-height: 1.8;
	color: #ddd;
	max-width: 800px;
	margin: 0 auto 40px;
	text-align: center;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 30px;
	margin-top: 50px;
	text-align: center;
}

.stat h3 {
	font-size: 3rem;
	font-weight: 700;
	color: #e50914;
	margin-bottom: 8px;
}

.stat p {
	color: #aaa;
	font-size: 1rem;
}

.founder-section, .team-grid-section {
	padding: 100px 0;
	background: #0a0a0a;
}

.founder-card {
	display: flex;
	align-items: center;
	gap: 40px;
	max-width: 1000px;
	margin: 0 auto;
	background: #1a1a1a;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.founder-img {
	width: 300px;
	height: 300px;
	object-fit: cover;
	border-radius: 50%;
	border: 6px solid #e50914;
	flex-shrink: 0;
}

.founder-info {
	padding: 30px;
	flex: 1;
}

.founder-info h3 {
	font-size: 2rem;
	margin-bottom: 8px;
}

.role {
	font-size: 1.1rem;
	color: #e50914;
	font-weight: 600;
	margin-bottom: 16px;
}

.bio {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #ccc;
	margin-bottom: 20px;
}

.social-links a {
	display: inline-flex;
	width: 40px;
	height: 40px;
	background: #2a2a2a;
	color: #aaa;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	margin-right: 12px;
	transition: all 0.3s;
}

.social-links a:hover {
	background: #e50914;
	color: white;
	transform: translateY(-3px);
}

.team-preview {
	padding: 100px 0;
	background: #111;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
}

.team-member {
	text-align: center;
	background: #1a1a1a;
	padding: 20px;
	border-radius: 16px;
	transition: transform 0.3s;
}

.team-member:hover {
	transform: translateY(-10px);
}

.team-member img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 16px;
	border: 3px solid #333;
}

.team-member h4 {
	font-size: 1.2rem;
	margin-bottom: 8px;
}

.team-member p {
	color: #aaa;
	font-size: 0.95rem;
}

/* ===== TEAM PAGE GRID ===== */
.team-grid-section .team-grid {
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	gap: 40px;
}

.team-grid-section .team-member {
	background: #1a1a1a;
	border-radius: 20px;
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
	border: 1px solid #222;
	text-align: left;
}

.team-grid-section .team-member:hover {
	transform: translateY(-12px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.member-img {
	width: 100%;
	height: 260px;
	object-fit: cover;
}

.member-info {
	padding: 24px;
	text-align: center;
}

.member-info h3 {
	font-size: 1.6rem;
	margin-bottom: 8px;
	color: #fff;
}

.member-info .role {
	font-size: 1.1rem;
	color: #e50914;
	font-weight: 600;
	margin-bottom: 16px;
}

.member-info .bio {
	font-size: 1.05rem;
	line-height: 1.7;
	color: #ccc;
	margin-bottom: 20px;
}

.member-info .social-links a {
	display: inline-flex;
	width: 40px;
	height: 40px;
	background: #2a2a2a;
	color: #aaa;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	margin: 0 6px;
	font-size: 1.1rem;
	transition: all 0.3s;
}

.member-info .social-links a:hover {
	background: #e50914;
	color: white;
	transform: translateY(-3px);
}

/* ===== PROGRAMMES PAGE ===== */
.categories-section {
	background: #0a0a0a;
	padding: 100px 0;
	text-align: center;
}

.categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 32px;
	margin-top: 50px;
}

.category-card {
	background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(15, 15, 15, 0.9));
	backdrop-filter: blur(12px);
	border: 1px solid rgba(229, 9, 20, 0.2);
	border-radius: 20px;
	padding: 36px 24px;
	text-decoration: none;
	color: #eee;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.category-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at top left, rgba(229, 9, 20, 0.1), transparent 60%);
	pointer-events: none;
	z-index: 0;
}

.category-card:hover {
	transform: translateY(-16px);
	box-shadow: 0 20px 50px rgba(229, 9, 20, 0.15);
	border-color: rgba(229, 9, 20, 0.5);
	background: linear-gradient(145deg, rgba(30, 10, 10, 0.6), rgba(20, 5, 10, 0.8));
}

.card-icon {
	font-size: 3rem;
	color: #e50914;
	margin-bottom: 18px;
	filter: drop-shadow(0 2px 8px rgba(229, 9, 20, 0.3));
	position: relative;
	z-index: 1;
}

.category-card h3 {
	font-size: 1.6rem;
	margin-bottom: 12px;
	font-weight: 700;
	background: linear-gradient(90deg, #fff, #e50914);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	z-index: 1;
}

.category-card p {
	position: relative;
	z-index: 1;
	font-size: 1rem;
	color: #ddd;
	line-height: 1.7;
}

.featured-section {
	background: #111;
	padding: 100px 0;
}

.programmes-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	gap: 40px;
	margin-top: 50px;
}

.programme-card {
	background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(15, 15, 15, 0.9));
	backdrop-filter: blur(12px);
	border: 1px solid rgba(229, 9, 20, 0.2);
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.4s ease;
	position: relative;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.programme-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at top right, rgba(229, 9, 20, 0.1), transparent 60%);
	pointer-events: none;
	z-index: 0;
}

.programme-card:hover {
	transform: translateY(-16px);
	box-shadow: 0 20px 50px rgba(229, 9, 20, 0.15);
	border-color: rgba(229, 9, 20, 0.5);
}

.programme-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 16px 16px 0 0;
	filter: brightness(0.95);
	transition: filter 0.3s;
	position: relative;
	z-index: 1;
}

.programme-card:hover img {
	filter: brightness(1.1);
}

.card-info {
	padding: 24px;
	position: relative;
	z-index: 1;
}

.card-info h3 {
	font-size: 1.6rem;
	margin-bottom: 8px;
	font-weight: 700;
	background: linear-gradient(90deg, #fff, #e50914);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.episodes {
	color: #e50914;
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 12px;
}

.desc {
	font-size: 1.02rem;
	color: #ccc;
	margin-bottom: 16px;
	line-height: 1.6;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
	background: #0a0a0a;
	padding: 100px 0;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	max-width: 1100px;
	margin: 0 auto;
}

.contact-form {
	background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(18, 18, 18, 0.95));
	backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
	position: relative;
	overflow: hidden;
}

.contact-form::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), transparent 70%);
	pointer-events: none;
	z-index: 0;
	border-radius: 20px;
}

.form-group {
	margin-bottom: 24px;
	position: relative;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #e0e0e0;
	font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 14px 16px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	color: white;
	font-size: 1rem;
	outline: none;
	transition: all 0.3s;
	backdrop-filter: blur(6px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
	border-color: #e50914;
	box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.15);
	background: rgba(229, 9, 20, 0.05);
}

.form-group textarea {
	resize: vertical;
}

.contact-info h3 {
	font-size: 1.6rem;
	margin-bottom: 24px;
	color: #fff;
	font-weight: 700;
}

.info-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 24px;
}

.info-item i {
	font-size: 1.3rem;
	color: #aaa;
	margin-top: 4px;
}

.info-item p {
	margin: 0;
	color: #ccc;
	line-height: 1.6;
	font-size: 0.98rem;
}

.info-item a {
	color: #e50914;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
}

.info-item a:hover {
	color: #fff;
	text-decoration: underline;
}

.contact-info .social-links {
	display: flex;
	gap: 14px;
	margin-top: 20px;
}

.contact-info .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: rgba(255, 255, 255, 0.06);
	color: #ccc;
	border-radius: 50%;
	font-size: 1.2rem;
	transition: all 0.3s;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info .social-links a:hover {
	background: #e50914;
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(229, 9, 20, 0.2);
}

.map-section {
	background: #111;
	padding: 80px 0;
}

.map-container {
	max-width: 1100px;
	margin: 0 auto;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-container iframe {
	display: block;
	width: 100%;
	height: 460px;
	border: none;
}

/* ===== FAQ PAGE ===== */
.faq-section {
	background: #0a0a0a;
	padding: 100px 0;
}

.faq-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(18, 18, 18, 0.95));
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.faq-item:hover {
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
	border-color: rgba(255, 255, 255, 0.12);
}

.faq-question {
	padding: 20px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	user-select: none;
}

.faq-question h3 {
	font-size: 1.25rem;
	font-weight: 600;
	color: #fff;
	margin: 0;
	line-height: 1.4;
}

.toggle-icon {
	font-size: 1.1rem;
	color: #aaa;
	transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
	transform: rotate(180deg);
	color: #e50914;
}

.faq-answer {
	padding: 0 24px;
	max-height: 0;
	overflow: hidden;
	transition: all 0.4s ease;
	background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-answer {
	padding: 20px 24px;
	max-height: 300px;
}

.faq-answer p {
	margin: 0;
	color: #ddd;
	font-size: 1rem;
	line-height: 1.7;
}

.faq-answer a {
	color: #e50914;
	text-decoration: none;
	font-weight: 500;
}

.faq-answer a:hover {
	text-decoration: underline;
}

.faq-cta {
	margin-top: 60px;
}

.faq-cta p {
	font-size: 1.2rem;
	color: #ccc;
	margin-bottom: 20px;
}

/* ===== BLOG PAGES ===== */
.blog-list-section {
	background: #0a0a0a;
	padding: 100px 0;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	gap: 32px;
	margin-top: 40px;
}

.blog-card {
	background: linear-gradient(145deg, rgba(26,26,26,0.9), rgba(18,18,18,0.95));
	border-radius: 18px;
	overflow: hidden;
	transition: all 0.3s;
	border: 1px solid rgba(255,255,255,0.08);
	box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.blog-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.blog-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.blog-info {
	padding: 20px;
}

.category {
	display: inline-block;
	background: rgba(229,9,20,0.15);
	color: #e50914;
	padding: 4px 12px;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 600;
	margin-bottom: 12px;
}

.blog-info h3 {
	margin: 0 0 8px;
	font-size: 1.4rem;
}

.blog-info h3 a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s;
}

.blog-info h3 a:hover {
	color: #e50914;
}

.meta {
	color: #aaa;
	font-size: 0.9rem;
	margin-bottom: 10px;
}

.excerpt {
	color: #ccc;
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 16px;
}

.read-more {
	color: #e50914;
	font-weight: 600;
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.3s;
}

.read-more:hover {
	color: #fff;
}

.blog-single-section {
	background: #0a0a0a;
	padding: 80px 0;
}

.blog-post {
	max-width: 800px;
	margin: 0 auto;
}

.post-header {
	text-align: center;
	margin-bottom: 32px;
}

.post-header .category {
	font-size: 0.85rem;
}

.post-header h1 {
	font-size: 2.8rem;
	margin: 16px 0;
	color: #fff;
}

.post-header .meta {
	color: #aaa;
}

.post-image {
	width: 100%;
	height: auto;
	border-radius: 16px;
	margin: 32px 0;
}

.post-content {
	font-size: 1.1rem;
	line-height: 1.9;
	color: #ddd;
}

.post-content p, .post-content ul, .post-content blockquote {
	margin-bottom: 24px;
}

.post-content h3 {
	color: #fff;
	margin: 32px 0 16px;
	font-size: 1.6rem;
}

.post-content ul {
	padding-left: 24px;
}

.post-content li {
	margin-bottom: 8px;
}

.post-content blockquote {
	border-left: 4px solid #e50914;
	padding: 16px 24px;
	background: rgba(229,9,20,0.05);
	font-style: italic;
	color: #ccc;
	margin: 32px 0;
}

.post-content blockquote cite {
	display: block;
	margin-top: 12px;
	font-weight: 600;
	color: #e50914;
}

.post-tags {
	margin: 40px 0;
	padding-top: 20px;
	border-top: 1px solid #222;
}

.post-tags a {
	color: #e50914;
	text-decoration: none;
	margin-right: 12px;
	font-size: 0.9rem;
}

.comments-section {
	margin-top: 60px;
	padding: 32px;
	background: rgba(26,26,26,0.5);
	border-radius: 16px;
}

.comments-section h3 {
	color: #fff;
	margin-bottom: 20px;
}

/* ===== TIMELINE STYLES - SIMPLIFIED FULL WIDTH WITH ALTERNATING IMAGES ===== */
.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.timeline-container::before {
    display: none; /* Remove the vertical line */
}

.timeline-event {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    width: 100%;
}

.timeline-event:nth-child(odd) {
    flex-direction: row; /* Image left, content right */
}

.timeline-event:nth-child(even) {
    flex-direction: row-reverse; /* Image right, content left */
}

.timeline-content {
    width: 100%;
    background: linear-gradient(145deg, rgba(26,26,26,0.9), rgba(18,18,18,0.95));
    border: 1px solid rgba(229, 9, 20, 0.2);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 9, 20, 0.5);
    box-shadow: 0 12px 40px rgba(229, 9, 20, 0.2);
}

.event-image {
    width: 300px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.timeline-content:hover .event-image img {
    transform: scale(1.05);
}

.event-details {
    flex: 1;
}

.event-date {
    color: #e50914;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.event-content {
    color: #ddd;
    line-height: 1.7;
    font-size: 1rem;
}

.event-content p {
    margin-bottom: 12px;
}

.event-content p:last-child {
    margin-bottom: 0;
}

.event-content ul, .event-content ol {
    padding-left: 20px;
    margin-bottom: 12px;
}

.event-content li {
    margin-bottom: 6px;
}

.event-content blockquote {
    border-left: 3px solid #e50914;
    padding-left: 16px;
    margin: 16px 0;
    font-style: italic;
    color: #ccc;
}

/* Remove the marker dot and line */
.timeline-marker {
    display: none;
}

.article-description {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.6;
    margin-top: 16px;
    text-align: center;
    font-style: italic;
}

.no-events {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-events h3 {
    color: #888;
    margin-bottom: 12px;
}

/* RESPONSIVE DESIGN FOR TIMELINE */
@media (max-width: 992px) {
    .timeline-event:nth-child(odd),
    .timeline-event:nth-child(even) {
        flex-direction: column; /* Stack on smaller screens */
    }
    
    .timeline-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .event-image {
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .timeline-container {
        padding: 0 15px;
    }
    
    .timeline-event {
        margin-bottom: 60px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .event-image {
        height: 200px;
    }
    
    .event-title {
        font-size: 1.3rem;
    }
    
    .event-content {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .timeline-container {
        padding: 0 10px;
    }
    
    .timeline-event {
        margin-bottom: 50px;
    }
    
    .timeline-content {
        padding: 16px;
    }
    
    .event-image {
        height: 180px;
    }
    
    .event-title {
        font-size: 1.2rem;
    }
}

/* ===== VIDEO PAGE STYLES ===== */
#video-page {
	background: #0a0a0a;
	min-height: 100vh;
}

#player-wrapper {
	margin-bottom: 30px;
}

#video-title {
	font-size: 2.2rem;
	color: #fff;
	margin-bottom: 16px;
	font-weight: 700;
}

#video-meta {
	color: #aaa;
	font-size: 1rem;
	margin-bottom: 24px;
}

#video-meta span {
	margin-right: 16px;
}

#video-desc {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #ddd;
	margin-bottom: 40px;
	padding: 24px;
	background: rgba(26, 26, 26, 0.6);
	border-radius: 12px;
	border-left: 4px solid #e50914;
}

.fb-comments {
	margin: 40px 0;
	/* background: rgba(26, 26, 26, 0.6); */
	background: #F0F8FF;
	padding: 20px;
	border-radius: 12px;
	min-height: 200px;
}

#loader {
	background: #0a0a0a;
	min-height: 100vh;
}

/* ===== BUTTONS ===== */
.btn-primary {
	display: inline-block;
	background: #e50914;
	color: white;
	padding: 14px 32px;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

.btn-primary:hover {
	background: #c20710;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(229,9,20,0.3);
}

.btn-secondary {
	display: inline-block;
	background: rgba(229,9,20,0.15);
	color: #e50914;
	border: 1px solid rgba(229,9,20,0.4);
	padding: 12px 28px;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s;
	cursor: pointer;
}

.btn-secondary:hover {
	background: #e50914;
	color: white;
	border-color: #e50914;
	transform: translateY(-2px);
	box-shadow: 0 0 20px rgba(229, 9, 20, 0.4);
}

/* ===== MODAL ===== */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(10px);
	z-index: 2000;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	transition: opacity .3s;
}

.modal.active {
	display: flex;
	opacity: 1;
}

.modal-content {
	background: #111;
	border-radius: 16px;
	max-width: 960px;
	width: 100%;
	max-height: 90vh;
	overflow: hidden;
	position: relative;
	overflow-y: auto;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.close {
	position: absolute;
	top: 16px;
	right: 20px;
	font-size: 2.4rem;
	color: white;
	cursor: pointer;
	z-index: 10;
	background: rgba(0, 0, 0, 0.5);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.close:hover {
	background: #e50914;
	transform: scale(1.1);
}

.modal-header {
	padding: 24px 24px 0;
	background: #1a1a1a;
}

.modal-header h2 {
	font-size: 1.8rem;
	color: white;
}

.modal-body {
	padding: 20px;
	background: #000;
}

#modal-player-container video, #modal-player-container iframe {
	width: 100%;
	height: 70vh;
	max-height: 600px;
	border-radius: 12px;
	background: #000;
}

.modal-desc {
	margin-top: 20px;
	color: #ddd;
	font-size: 1.1rem;
	line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
	background: #111;
	padding: 70px 5% 40px;
	margin-top: 100px;
}

.footer-container {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 40px;
}

.footer-brand h2 {
	color: #e50914;
	font-size: 1.8rem;
	margin-bottom: 8px;
}

.footer-brand p {
	font-size: 0.95rem;
	color: #888;
}

.footer-links h4, .footer-social h4 {
	color: #fff;
	font-size: 1.1rem;
	margin-bottom: 16px;
	font-weight: 600;
}

.footer-links a {
	display: block;
	color: #aaa;
	text-decoration: none;
	margin-bottom: 12px;
	font-size: 0.95rem;
	transition: color .3s;
}

.footer-links a:hover {
	color: #e50914;
}

.social-icons {
	display: flex;
	gap: 16px;
}

.social-icons a {
	color: #aaa;
	font-size: 1.5rem;
	transition: color .3s;
}

.social-icons a:hover {
	color: #e50914;
}

.footer-bottom {
	grid-column: 1/-1;
	text-align: center;
	padding-top: 40px;
	border-top: 1px solid #333;
	color: #666;
}

.footer-bottom a {
	color: #aaa;
	text-decoration: none;
}

.footer-bottom a:hover {
	color: #e50914;
}

.cta-section {
	background: #0a0a0a;
	padding: 100px 0;
	text-align: center;
	border-top: 1px solid #222;
}

.cta-section .section-title {
	font-size: 2.6rem;
	margin-bottom: 16px;
}

.cta-section .section-subtitle {
	font-size: 1.2rem;
	color: #aaa;
	max-width: 700px;
	margin: 0 auto 40px;
	line-height: 1.7;
}

.cta-section .btn-primary {
	font-size: 1.1rem;
	padding: 16px 40px;
}

/* ===== RESPONSIVE DESIGN - PERFECTLY OPTIMIZED ===== */
@media ( max-width : 1200px) {
	.video-card {
		flex: 1 1 calc(33.333% - 24px);
		max-width: calc(33.333% - 24px);
	}
}

@media ( max-width : 992px) {
	.hero, .about-hero, .team-hero {
		height: 70vh;
		min-height: 480px;
	}
	.hero h1, .about-hero h1, .team-hero h1 {
		font-size: 3.5rem;
	}
	.video-card {
		flex: 1 1 calc(50% - 24px);
		max-width: calc(50% - 24px);
	}
	.footer-container {
		grid-template-columns: 1fr 1fr;
	}
	.team-grid, .blog-grid, .programmes-grid, .categories-grid {
		grid-template-columns: 1fr 1fr;
	}
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.founder-card {
		flex-direction: column;
		text-align: center;
	}
	.founder-img {
		width: 200px;
		height: 200px;
	}
	.page-title {
		font-size: 3rem;
	}
	.tagline {
		font-size: 1.3rem;
	}
}

/* MOBILE NAVIGATION - PERFECTLY WORKING */
@media ( max-width : 768px) {
	.menu-toggle {
		display: flex;
	}
	
	.nav-links {
		position: fixed;
		top: 0;
		left: -100%;
		width: 280px;
		height: 100vh;
		background: #0a0a0a;
		flex-direction: column;
		padding: 100px 30px 40px;
		transition: left .4s;
		z-index: 999;
		border-right: 1px solid #222;
	}
	
	.nav-links.active {
		left: 0;
	}
	
	.nav-links a {
		font-size: 1.3rem;
		padding: 18px 0;
		width: 100%;
		border-bottom: 1px solid #222;
	}
	
	.search-bar {
		width: 220px;
	}
	
	.hero, .about-hero, .team-hero {
		height: 60vh;
		min-height: 420px;
		margin-top: 68px;
	}
	.hero h1, .about-hero h1, .team-hero h1 {
		font-size: 2.8rem;
	}
	.tagline {
		font-size: 1.1rem;
	}
	.video-grid, .video-row {
		gap: 16px;
	}
	.video-card {
		flex: 0 0 calc(100% - 16px);
		max-width: none;
	}
	.footer-container {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.team-grid, .blog-grid, .programmes-grid, .categories-grid {
		grid-template-columns: 1fr;
	}
	.stats-grid {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}
	.page-title {
		font-size: 2.5rem;
	}
	.page-subtitle {
		font-size: 1.1rem;
	}
	.section-title {
		font-size: 2rem;
	}
	.contact-form {
		padding: 32px;
	}
	.contact-info h3 {
		font-size: 1.4rem;
	}
	.info-item {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.info-item i {
		margin-bottom: 8px;
	}
	.faq-question h3 {
		font-size: 1.15rem;
	}
	.faq-question, .faq-answer {
		padding: 18px 20px;
	}
	.post-header h1 {
		font-size: 2.2rem;
	}
	.card-icon {
		font-size: 2.5rem;
	}
	.category-card h3, .card-info h3 {
		font-size: 1.4rem;
	}
	
	/* TIMELINE MOBILE FIX - FULL WIDTH */
	.timeline-container::before {
		left: 20px;
	}
	
	.timeline-event {
		justify-content: flex-start !important;
		margin-left: 0;
		margin-bottom: 60px;
	}
	
	.timeline-content {
		width: calc(100% - 50px) !important;
		margin-left: 50px !important;
		margin-right: 0 !important;
		padding: 20px;
	}
	
	.timeline-marker {
		left: 20px;
	}
	
	.marker-dot {
		width: 16px;
		height: 16px;
		border: 3px solid #0a0a0a;
	}
	
	.event-image {
		height: 180px;
	}
	
	.event-title {
		font-size: 1.3rem;
	}
	
	.event-content {
		font-size: 0.95rem;
	}
}

@media ( max-width : 480px) {
	.page-header {
		padding: 120px 0 60px;
	}
	.page-title {
		font-size: 2rem;
	}
	.hero h1, .about-hero h1, .team-hero h1 {
		font-size: 2rem;
	}
	.btn-primary, .btn-secondary {
		padding: 12px 24px;
		font-size: 0.9rem;
	}
	.logo-img {
		height: 32px;
	}
	
	.navbar {
		padding: 12px 15px;
	}
	
	.search-bar {
		display: none;
	}
	
	/* TIMELINE SMALL MOBILE OPTIMIZATION */
	.timeline-container {
		padding: 0 15px;
	}
	
	.timeline-content {
		width: calc(100% - 40px) !important;
		margin-left: 40px !important;
		padding: 16px;
	}
	
	.timeline-container::before {
		left: 15px;
	}
	
	.timeline-marker {
		left: 15px;
	}
	
	.event-image {
		height: 160px;
	}
	
	.event-title {
		font-size: 1.2rem;
	}
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 2px solid #e50914;
	outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
	.navbar,
	.footer,
	.modal,
	.hero-play-overlay {
		display: none !important;
	}
	
	body {
		background: white;
		color: black;
	}
}





/* EMERGENCY HAMBURGER FIX */
.menu-toggle {
    display: none !important;
    position: relative !important;
    z-index: 1001 !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    width: 30px !important;
    height: 30px !important;
    padding: 0 !important;
}

.menu-toggle span {
    display: block !important;
    width: 25px !important;
    height: 3px !important;
    background: #e0e0e0 !important;
    margin: 3px 0 !important;
    transition: 0.3s !important;
    border-radius: 2px !important;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px) !important;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0 !important;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px) !important;
}

/* Force show on mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }
}

/* Make sure it's visible and clickable */
.nav-container {
    position: relative !important;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 280px !important;
        height: 100vh !important;
        background: #0a0a0a !important;
        flex-direction: column !important;
        padding: 100px 30px 40px !important;
        transition: left 0.4s ease !important;
        z-index: 999 !important;
        border-right: 1px solid #222 !important;
    }
    
    .nav-links.active {
        left: 0 !important;
    }
    
    .nav-links a {
        padding: 15px 0 !important;
        border-bottom: 1px solid #222 !important;
        font-size: 1.1rem !important;
        width: 100% !important;
        display: block !important;
    }
}



/* ===== INFO PAGE STYLES (About, Team, etc.) ===== */
.info-page-content {
  background: #0a0a0a;
  padding: 80px 0;
}

.info-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.info-section:last-child {
  margin-bottom: 0;
}

.info-section-image-left .info-image {
  order: 1;
}

.info-section-image-left .info-content {
  order: 2;
}

.info-section-image-right .info-image {
  order: 2;
}

.info-section-image-right .info-content {
  order: 1;
}

.info-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.info-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.info-image:hover img {
  transform: scale(1.05);
}

.info-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.info-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
}

.info-text p {
  margin-bottom: 20px;
}

.info-text ul, .info-text ol {
  margin: 20px 0;
  padding-left: 24px;
}

.info-text li {
  margin-bottom: 12px;
  position: relative;
}

.info-text li::before {
  content: '•';
  color: #e50914;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.info-text strong {
  color: #fff;
  font-weight: 600;
}

.info-text em {
  color: #e50914;
  font-style: italic;
}

.loading-content {
  animation: pulse 1.5s infinite ease-in-out;
}

/* Stats section for about page */
.stats-section {
  background: #111;
  padding: 80px 0;
  margin: 80px 0;
  border-radius: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  padding: 30px 20px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #e50914;
  margin-bottom: 12px;
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  color: #ccc;
  font-weight: 500;
}

/* Responsive design for info pages */
@media (max-width: 992px) {
  .info-section {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }
  
  .info-section-image-left .info-image,
  .info-section-image-right .info-image,
  .info-section-image-left .info-content,
  .info-section-image-right .info-content {
    order: unset;
  }
  
  .info-content h2 {
    font-size: 2.2rem;
    text-align: center;
  }
  
  .info-image img {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .info-page-content {
    padding: 60px 0;
  }
  
  .info-content h2 {
    font-size: 2rem;
  }
  
  .info-text {
    font-size: 1rem;
  }
  
  .info-image img {
    height: 300px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .stat-number {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .info-content h2 {
    font-size: 1.8rem;
  }
  
  .info-image img {
    height: 250px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}



/* Section Headers with View More */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.section-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.view-more-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
}

.view-more-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.view-more-btn:hover i {
    transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .view-more-btn {
        align-self: flex-start;
    }
}



/* category css */

/* Category specific styles */
/* Compact Categories Grid */
.categories-grid.compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.category-card.compact {
    padding: 20px;
    text-align: center;
}

.category-card.compact .category-icon {
    margin: 0 auto 12px auto;
}

.category-card.compact .category-content h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.category-card.compact .category-content p {
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* search specific */
/* ===== PERFECT SEARCH BAR CSS - FIXED BORDER ISSUE ===== */

/* Search Bar Container */
.search-bar {
    position: relative;
    margin-left: 20px;
    flex: 0 1 auto;
    display: inline-block;
}

/* Search Form */
.search-bar form {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

/* Search Input Field */
.search-bar input[type="text"] {
    width: 240px;
    padding: 10px 40px 10px 15px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 24px;
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

/* Remove hover border color change */
.search-bar input[type="text"]:hover {
    border-color: #444; /* Keep original border color */
    background: #2a2a2a;
}


/* OPTION 2: Remove red border entirely (cleaner look) */

.search-bar input[type="text"]:focus {
    outline: none !important;
    border-color: #444; /* Keep original border color */
    background: #1f1f1f;
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.25);
    width: 280px;
}


/* Search Input Placeholder */
.search-bar input[type="text"]::placeholder {
    color: #888;
    font-weight: 400;
}

/* Search Button */
.search-bar button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #aaa;
    cursor: pointer;
    padding: 8px 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    z-index: 2;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Button hover */
.search-bar button:hover {
    color: #e50914;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-50%) scale(1.05);
}

/* Button active */
.search-bar button:active {
    transform: translateY(-50%) scale(0.95);
    background: rgba(255, 255, 255, 0.1);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 992px) {
    .search-bar input[type="text"] {
        width: 200px;
        padding: 10px 38px 10px 15px;
    }
    
    .search-bar input[type="text"]:focus {
        width: 240px;
    }
    
    .search-bar button {
        right: 8px;
        padding: 8px 9px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .search-bar {
        position: static;
        margin: 15px 0 0 0;
        width: 100%;
        order: 3;
    }
    
    .search-bar form {
        width: 100%;
    }
    
    .search-bar input[type="text"] {
        width: 100%;
        padding: 12px 45px 12px 20px;
        border-radius: 28px;
        font-size: 1rem;
    }
    
    .search-bar input[type="text"]:focus {
        width: 100%;
    }
    
    .search-bar button {
        right: 12px;
        padding: 10px;
        font-size: 1.1rem;
        width: 36px;
        height: 36px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .search-bar input[type="text"] {
        padding: 14px 48px 14px 20px;
        font-size: 1.05rem;
    }
    
    .search-bar button {
        right: 15px;
        padding: 11px;
        font-size: 1.2rem;
        width: 38px;
        height: 38px;
    }
}

/* ===== FIX FOR BORDER EXTENSION ===== */
/* This ensures the border extends properly */

.search-bar input[type="text"] {
    /* Remove any default browser styling */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* For Firefox */
.search-bar input[type="text"]::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/* Accessibility - only show on keyboard focus, not mouse click */
.search-bar input[type="text"]:focus:not(:focus-visible) {
    border-color: #444; /* Keep original on mouse click */
}

.search-bar input[type="text"]:focus-visible {
    border-color: #e50914; /* Only show red on keyboard navigation */
}

/* If you want NO red border at all (completely clean), use this: */
/*
.search-bar input[type="text"]:focus,
.search-bar input[type="text"]:focus-visible {
    border-color: #444;
    outline: none;
}
*/



/* contact */
/* ===== CONTACT FORM ENHANCEMENTS ===== */

/* Required field indicator */
.required-field:after {
    content: ' *';
    color: #e50914;
    font-weight: bold;
    margin-left: 4px;
}

/* Modern Dropdown Styling */
.modern-dropdown {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: rgba(255, 255, 255, 0.06) url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e50914'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e") no-repeat right 16px center/16px 16px;
    padding-right: 48px;
    cursor: pointer;
}

.modern-dropdown option {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 12px;
    font-size: 0.95rem;
}

.modern-dropdown option:first-child {
    color: #888;
}

/* Form Validation States */
.form-control.ui-state-error {
    border-color: #e50914 !important;
    background: rgba(229, 9, 20, 0.05) !important;
}

.form-control.ui-state-error:focus {
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.2) !important;
}

/* Error messages */
.error-text {
    color: #e50914;
    font-size: 0.875rem;
    margin-top: 6px;
    display: block;
    font-weight: 500;
}

/* Success/Error Messages */
.global-message {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid transparent;
}

.global-message:before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.1rem;
}

.success-message {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border-color: rgba(46, 204, 113, 0.2);
}

.success-message:before {
    content: '✓';
}

.error-message {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border-color: rgba(231, 76, 60, 0.2);
}

.error-message:before {
    content: '✕';
}

/* Form Group Focus Enhancement */
.form-group:focus-within label {
    color: #fff;
}

/* Button Enhancement */
.btn-primary {
    margin-top: 8px;
    font-size: 1rem;
    padding: 14px 32px;
    width: 100%;
}

/* Mobile optimization for dropdown */
@media (max-width: 768px) {
    .modern-dropdown {
        padding-right: 44px;
        background-position: right 14px center;
    }
    
    .contact-form {
        padding: 28px;
    }
    
    .global-message {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
}

/* ===== MODERN SELECT BOX FIX ===== */

/* Target the select box specifically in contact form */
.contact-form select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: rgba(255, 255, 255, 0.06) 
                url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23aaa'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e") 
                no-repeat right 16px center/16px 16px;
    padding: 14px 48px 14px 16px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #e0e0e0;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
    width: 100%;
    line-height: 1.5;
}

/* Hover state */
.contact-form select.form-control:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.08);
}

/* Focus state - Clean, no red border */
.contact-form select.form-control:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.1);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e50914'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
}

/* Active/Open state */
.contact-form select.form-control:active {
    border-color: rgba(229, 9, 20, 0.4);
}

/* Dropdown options styling */
.contact-form select.form-control option {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 12px 16px;
    font-size: 0.95rem;
    border: none;
}

/* First option (placeholder) */
.contact-form select.form-control option:first-child {
    color: #888;
    font-style: italic;
}

/* Hover option */
.contact-form select.form-control option:hover,
.contact-form select.form-control option:focus,
.contact-form select.form-control option:checked {
    background-color: rgba(229, 9, 20, 0.2);
    color: #fff;
}

/* Disabled state */
.contact-form select.form-control:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: rgba(255, 255, 255, 0.03);
}

/* Error state */
.contact-form select.form-control.ui-state-error {
    border-color: #e50914;
    background-color: rgba(229, 9, 20, 0.05);
}

.contact-form select.form-control.ui-state-error:focus {
    border-color: #e50914;
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.2);
}

/* Mobile optimization */
@media (max-width: 768px) {
    .contact-form select.form-control {
        padding: 12px 44px 12px 14px;
        font-size: 0.95rem;
        background-position: right 14px center;
        background-size: 14px 14px;
    }
}

/* Remove default arrow in Firefox */
@-moz-document url-prefix() {
    .contact-form select.form-control {
        text-indent: 0.01px;
        text-overflow: '';
        padding-right: 48px;
    }
}

/* For IE10+ (though not needed for modern browsers) */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .contact-form select.form-control {
        padding-right: 48px;
    }
    .contact-form select.form-control::-ms-expand {
        display: none;
    }
}




/* Add this in the search section of viharitv.css */
/* ===== SEARCH PAGE STYLES ===== */

.search-summary {
    margin-bottom: 30px;
}

.search-summary p {
    color: #ccc;
    font-size: 1.1rem;
}

.result-count {
    color: #e50914;
    font-weight: 600;
}

.search-query {
    color: #fff;
    font-weight: 500;
}

/* FIX FOR SUGGESTION TAGS - CRITICAL */
.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.suggestion-tags a.tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(229, 9, 20, 0.1);
    color: #e50914;
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer !important; /* FORCE CURSOR */
    pointer-events: auto !important; /* FORCE CLICKABLE */
}

.suggestion-tags a.tag:hover {
    background: rgba(229, 9, 20, 0.2);
    border-color: rgba(229, 9, 20, 0.5);
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

.suggestion-title {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

/* No results section */
.no-results, .no-query {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-results i, .no-query i {
    font-size: 4rem;
    color: #666;
    margin-bottom: 20px;
    display: block;
}

.no-results h2, .no-query h2 {
    color: #aaa;
    margin-bottom: 16px;
}

.no-results p, .no-query p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #888;
}

.suggestions {
    margin-top: 30px;
}

.suggestions h3 {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.suggestion-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.suggestion-buttons a.btn-secondary {
    cursor: pointer !important; /* FORCE CURSOR */
    pointer-events: auto !important; /* FORCE CLICKABLE */
}

/* Search results grid specific */
#search-results .video-card {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.suggestion-tags a.tag {
    cursor: pointer !important;
    pointer-events: auto !important;
}

.suggestion-tags a.tag {
    cursor: pointer !important;
    pointer-events: auto !important;
}



/* Terms and privacy CSS */

/* ===== LEGAL PAGES STYLES ===== */
.legal-content {
  background: rgba(26, 26, 26, 0.6);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 60px;
}

.last-updated {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
}

.last-updated em {
  color: #ccc;
  font-style: italic;
  display: block;
  margin-top: 10px;
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  color: #e50914;
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
  border-left: 4px solid #e50914;
  padding-left: 15px;
}

.legal-text p {
  color: #ddd;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.legal-text ul {
  margin: 20px 0;
  padding-left: 25px;
}

.legal-text li {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 10px;
  position: relative;
}

.legal-text li:before {
  content: "•";
  color: #e50914;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.legal-text address {
  font-style: normal;
  color: #ddd;
  line-height: 1.8;
  margin-top: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 3px solid #e50914;
}

.legal-text a {
  color: #e50914;
  text-decoration: none;
}

.legal-text a:hover {
  text-decoration: underline;
}

.legal-text strong {
  color: #fff;
  font-weight: 600;
}

/* Responsive legal pages */
@media (max-width: 768px) {
  .legal-content {
    padding: 25px;
  }
  
  .legal-section h2 {
    font-size: 1.5rem;
  }
  
  .legal-text p, .legal-text li {
    font-size: 1rem;
  }
  
  .legal-text address {
    padding: 15px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .legal-content {
    padding: 20px;
  }
  
  .legal-section h2 {
    font-size: 1.3rem;
    padding-left: 12px;
    border-left-width: 3px;
  }
  
  .legal-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}
