/* ============================================
   DISHOOM BOYZ — Professional Design System
   Rich section colors + scroll animations
   ============================================ */

/* --- Global --- */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 90px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	overflow-x: hidden;
	-webkit-text-size-adjust: 100%;
	color: #1a1a1a;
}

img {
	max-width: 100%;
	height: auto;
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	background: linear-gradient(90deg, #FFD700, #FF8C00);
	z-index: 99999;
	transform-origin: left;
	transform: scaleX(0);
	transition: none;
	pointer-events: none;
}

/* ============================================
   SCROLL REVEAL SYSTEM — Cinematic
   ============================================ */
.reveal {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
	            transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
	opacity: 1;
	transform: translateY(0);
}

/* Clip reveal — content slides up from behind a mask */
.reveal-clip {
	clip-path: inset(100% 0 0 0);
	transition: clip-path 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-clip.revealed {
	clip-path: inset(0 0 0 0);
}

.reveal-left {
	opacity: 0;
	transform: translateX(-60px);
	transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
	            transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.revealed {
	opacity: 1;
	transform: translateX(0);
}

.reveal-right {
	opacity: 0;
	transform: translateX(60px);
	transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
	            transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.revealed {
	opacity: 1;
	transform: translateX(0);
}

.reveal-scale {
	opacity: 0;
	transform: scale(0.88);
	transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
	            transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-scale.revealed {
	opacity: 1;
	transform: scale(1);
}

.stagger-1 { transition-delay: 0s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.36s; }
.stagger-5 { transition-delay: 0.48s; }
.stagger-6 { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
	.reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-clip {
		opacity: 1;
		transform: none;
		clip-path: none;
		transition: none;
	}
	.scroll-progress { display: none; }
}

/* ============================================
   SECTION NUMBERING — 01, 02, 03...
   ============================================ */
.section-number {
	display: block;
	text-align: center;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	margin-bottom: 12px;
	opacity: 0.35;
}

.mission-section .section-number { color: #b8860b; }
.activities-section .section-number { color: #999; }
.achievements-section .section-number { color: rgba(255, 215, 0, 0.5); }
.board-section .section-number { color: rgba(255, 215, 0, 0.4); }

/* 30-04-2026 */
.wp-theme-dishoom-boyz-theme .site-header.custom-header,
.wp-theme-dishoom-boyz-theme header.wp-block-template-part,
.wp-theme-dishoom-boyz-theme header.wp-block-template-part .site-header {
	/* background: rgba(26, 26, 26, .98) !important; */
	background: linear-gradient(170deg,#1a1714 0%,#211e19 50%,#1a1714 100%)!important;
}
.header-logo img,
.header-logo .wp-block-site-logo img,
header.wp-block-template-part .wp-block-site-logo img,
.footer-logo img,
.footer-logo .wp-block-site-logo img {
	max-height: fit-content!important;
}
.footer-logo .wp-block-site-logo img {
	height: 80px!important;
}
.site-footer .footer-inner .footer-description {
	margin-top: -5px;
    margin-left: 15px;
}
.site-footer .footer-inner .footer-bottom-social .wp-social-link svg {
    width: 22px;
    height: 22px;
}
.wp-theme-dishoom-boyz-theme .site-header .header-nav .wp-block-navigation-item a,
header.wp-block-template-part .wp-block-navigation-item a {
	color: rgba(255,255,255,.98);
}
.wp-theme-dishoom-boyz-theme .site-header .header-nav .wp-block-navigation-item a:hover,
.wp-theme-dishoom-boyz-theme .site-header .header-nav .wp-block-navigation-item a:focus,
header.wp-block-template-part .wp-block-navigation-item a:hover,
header.wp-block-template-part .wp-block-navigation-item a:focus {
	color: rgba(255,215,0,.98);
}
.board-section .section-heading,
.achievements-section .section-heading,
.activities-section .activities-title {
	clip-path: inset(0 0 0 0)!important;
}
/* 30-04-2026 */
/* ============================================
   HERO ENTRANCE — Word-by-word
   ============================================ */
.hero-title {
	opacity: 0;
}

.hero-title.hero-animated {
	opacity: 1;
}

.hero-title .word {
	display: inline-block;
	opacity: 0;
	transform: translateY(40px) rotateX(-15deg);
	animation: wordReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes wordReveal {
	to {
		opacity: 1;
		transform: translateY(0) rotateX(0);
	}
}

.hero-subtitle {
	animation: heroFadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 1.2s both;
}

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

/* ============================================
   HERO FLOATING PARTICLES
   ============================================ */
.hero-particle {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 215, 0, 0.15);
	pointer-events: none;
	z-index: 1;
	animation: particleFloat linear infinite;
}

@keyframes particleFloat {
	0% { transform: translateY(0) scale(1); opacity: 0; }
	10% { opacity: 1; }
	90% { opacity: 1; }
	100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}

/* ============================================
   ANIMATED ACCENT LINE
   ============================================ */
.accent-line {
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, #FFD700, #FF8C00);
	margin: 14px auto 28px auto;
	border-radius: 2px;
	border: none;
	transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.accent-line.revealed {
	width: 50px;
}

/* ============================================
   MAGNETIC / 3D TILT CARDS
   ============================================ */
.tilt-card {
	transform-style: preserve-3d;
	perspective: 1000px;
	will-change: transform;
}

/* ============================================
   HEADER — Premium sticky with shrink
   ============================================ */
.site-header,
header.wp-block-template-part {
	position: sticky !important;
	top: 0 !important;
	z-index: 9999 !important;
	background: rgba(255, 255, 255, 0.98) !important;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
	transition: box-shadow 0.4s ease, padding 0.4s ease;
}

/* Scrolled state — tighter + shadow */
.site-header.header-scrolled,
header.wp-block-template-part.header-scrolled {
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* Outer wrapper padding */
.site-header > .wp-block-group,
.site-header .header-container,
header.wp-block-template-part > .wp-block-group {
	max-width: 100%;
}

/* Inner flex container */
.header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	padding: 15px 40px;
	gap: 24px;
	transition: padding 0.4s ease;
}

/* Shrink on scroll */
.header-scrolled .header-container {
	padding-top: 10px;
	padding-bottom: 10px;
}

/* --- Logo --- */
.header-logo {
	flex-shrink: 0;
}

.header-logo img,
.header-logo .wp-block-site-logo img,
header.wp-block-template-part .wp-block-site-logo img {
	max-height: 55px;
	width: auto;
	display: block;
	transition: max-height 0.4s ease;
}

.header-scrolled .header-logo img,
.header-scrolled .header-logo .wp-block-site-logo img,
.header-scrolled .wp-block-site-logo img {
	max-height: 45px;
}

.header-logo a,
header.wp-block-template-part .wp-block-site-logo a {
	display: inline-flex;
	text-decoration: none;
}

/* --- Navigation --- */
.header-nav {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.header-nav .wp-block-navigation__container,
header.wp-block-template-part .wp-block-navigation__container {
	display: flex;
	align-items: center;
	gap: 4px;
	flex-wrap: nowrap;
}

/* Nav link base */
.header-nav .wp-block-navigation-item a,
header.wp-block-template-part .wp-block-navigation-item a {
	text-decoration: none;
	color: #444;
	font-weight: 500;
	font-size: 0.88rem;
	letter-spacing: 0.02em;
	padding: 8px 16px;
	border-radius: 0;
	transition: color 0.3s ease;
	white-space: nowrap;
	position: relative;
}

/* Animated underline */
.header-nav .wp-block-navigation-item a::after,
header.wp-block-template-part .wp-block-navigation-item a::after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 16px;
	right: 16px;
	height: 2px;
	background: #FFD700;
	border-radius: 1px;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.header-nav .wp-block-navigation-item a:hover::after,
header.wp-block-template-part .wp-block-navigation-item a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.header-nav .wp-block-navigation-item a:hover,
header.wp-block-template-part .wp-block-navigation-item a:hover {
	color: #1a1a1a;
}

/* Active state */
.header-nav .wp-block-navigation-item a.nav-active,
header.wp-block-template-part .wp-block-navigation-item a.nav-active {
	color: #1a1a1a;
	font-weight: 600;
}

.header-nav .wp-block-navigation-item a.nav-active::after,
header.wp-block-template-part .wp-block-navigation-item a.nav-active::after {
	transform: scaleX(1);
	background: #FFD700;
}

/* --- Mobile hamburger button --- */
.wp-block-navigation__responsive-container-open {
	padding: 8px;
}

.wp-block-navigation__responsive-container-open svg {
	width: 24px;
	height: 24px;
}

/* --- Mobile drawer --- */
.wp-block-navigation__responsive-container.is-menu-open {
	background: #ffffff !important;
	padding: 0;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
	padding: 100px 32px 40px;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item {
	border-bottom: 1px solid #f0f0f0;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item:last-child {
	border-bottom: none;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item a {
	color: #1a1a1a;
	font-size: 1.05rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	padding: 18px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: color 0.3s ease, padding-left 0.3s ease;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item a::after {
	content: '\2192';
	font-size: 1rem;
	color: #ccc;
	transition: color 0.3s ease, transform 0.3s ease;
	position: static;
	transform: none;
	background: none;
	height: auto;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item a:hover {
	color: #b8860b;
	padding-left: 8px;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item a:hover::after {
	color: #FFD700;
	transform: translateX(4px);
}

/* Close button */
.wp-block-navigation__responsive-container-close {
	top: 20px !important;
	right: 20px !important;
	padding: 8px;
}

.wp-block-navigation__responsive-container-close svg {
	width: 20px;
	height: 20px;
}

/* ============================================
   SECTION BASE
   ============================================ */
.page-section {
	padding: clamp(50px, 8vw, 100px) clamp(16px, 4vw, 40px);
	width: 100%;
}

.page-section .section-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.section-heading {
	text-align: center;
	margin-bottom: 16px;
	font-size: clamp(1.5rem, 4vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
}

.section-subheading {
	text-align: center;
	font-size: clamp(0.95rem, 2vw, 1.1rem);
	max-width: 700px;
	margin: 0 auto 48px auto;
	line-height: 1.7;
	padding: 0 10px;
}

/* ============================================
   HERO — Dark parallax with gold
   ============================================ */
.hero-section {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	padding: clamp(60px, 10vw, 100px) clamp(16px, 4vw, 40px);
	-webkit-clip-path: inset(0);
	clip-path: inset(0);
}
.hero-section::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
/* 	background:
		radial-gradient(ellipse at 20% 30%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
		radial-gradient(ellipse at 80% 60%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
		radial-gradient(ellipse at 50% 10%, rgba(255, 215, 0, 0.06) 0%, transparent 60%),
		repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255, 215, 0, 0.03) 40px, rgba(255, 215, 0, 0.03) 80px),
		repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255, 215, 0, 0.015) 40px, rgba(255, 215, 0, 0.015) 80px),
		linear-gradient(160deg, #080808 0%, #0d0d0d 40%, #080808 100%); */
	background: transparent;
		background-color: transparent;
	z-index: 0;
	pointer-events: none;
} 

.hero-section::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	padding: 0 10px;
}

.hero-title {
	font-size: clamp(1.75rem, 6vw, 3.5rem);
	font-weight: 900;
	color: #ffffff;
	line-height: 1.1;
	margin-bottom: 24px;
	letter-spacing: -0.03em;
}

.hero-title em {
	color: #FFD700;
	font-style: normal;
}

.hero-subtitle {
	font-size: clamp(1rem, 2.5vw, 1.2rem);
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
	max-width: 620px;
	margin: 0 auto;
}

/* ============================================
   SCROLL INDICATOR — Mouse + dot + arrow
   ============================================ */
.scroll-indicator {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	margin-top: 48px;
	position: relative;
	z-index: 2;
}

/* Mouse outline */
.scroll-indicator-mouse {
	width: 26px;
	height: 42px;
	border: 3px solid rgba(255, 255, 255, 0.6);
	border-radius: 14px;
	position: relative;
	box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
	animation: mousePulse 2s ease-in-out infinite;
}

/* Inner scrolling dot */
.scroll-indicator-mouse::before {
	content: '';
	position: absolute;
	top: 6px;
	left: 50%;
	width: 4px;
	height: 8px;
	margin-left: -2px;
	background: #FFD700;
	border-radius: 4px;
	animation: dotScroll 1.8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
	box-shadow: 0 0 6px rgba(255, 215, 0, 0.5);
}

/* Down arrow */
.scroll-indicator-arrow {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	animation: arrowBounce 1.8s ease-in-out infinite;
}

.scroll-indicator-arrow::before,
.scroll-indicator-arrow::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-right: 2px solid rgba(255, 255, 255, 0.5);
	border-bottom: 2px solid rgba(255, 255, 255, 0.5);
	transform: rotate(45deg);
}

.scroll-indicator-arrow::before {
	opacity: 0.4;
}

.scroll-indicator-arrow::after {
	opacity: 0.7;
	margin-top: -5px;
}

/* Dot scrolls down inside the mouse */
@keyframes dotScroll {
	0%   { top: 6px; opacity: 1; }
	50%  { top: 20px; opacity: 1; }
	100% { top: 28px; opacity: 0; }
}

/* Mouse gently pulses */
@keyframes mousePulse {
	0%, 100% { box-shadow: 0 0 12px rgba(255, 255, 255, 0.1); }
	50%      { box-shadow: 0 0 20px rgba(255, 255, 255, 0.2); }
}

/* Arrow bounces */
@keyframes arrowBounce {
	0%, 100% { transform: translateY(0); opacity: 0.6; }
	50%      { transform: translateY(5px); opacity: 1; }
}

/* Remove old ::after indicator */
.hero-section .hero-content::after {
	display: none;
}

/* ============================================
   MISSION — 2-Column interactive layout
   ============================================ */
.mission-section {
	background: #faf8f4;
	position: relative;
	z-index: 3;
}

/* 2-column grid */
.mission-layout {
	align-items: center !important;
	gap: clamp(32px, 5vw, 60px) !important;
}

/* --- LEFT: Text column --- */
.mission-label {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: #b8860b;
	margin-bottom: 12px !important;
}

.mission-title {
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
	font-weight: 800;
	color: #1a1a1a;
	line-height: 1.2;
	margin-bottom: 24px !important;
	letter-spacing: -0.02em;
}

.mission-title em {
	color: #b8860b;
	font-style: normal;
}

.mission-body {
	color: #555;
	font-size: clamp(0.92rem, 1.5vw, 1.02rem);
	line-height: 1.85;
	margin-bottom: 24px !important;
}

.mission-body strong {
	color: #1a1a1a;
	font-weight: 600;
}

.mission-divider {
	width: 100%;
	height: 1px !important;
	background: #e8e4dc;
	border: none;
	margin: 0 0 24px 0 !important;
	opacity: 1;
}

/* Value pills row */
.mission-values {
	gap: 10px !important;
}

.mission-value-pill {
	background: #ffffff;
	border: 1px solid #e8e4dc;
	border-radius: 100px;
	padding: 8px 18px;
	gap: 6px !important;
	transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
	cursor: default;
}

.mission-value-pill:hover {
	border-color: #FFD700;
	background: #fef9e7;
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(255, 215, 0, 0.12);
}

.mission-value-pill p {
	font-size: 0.82rem;
	font-weight: 600;
	color: #444;
	margin: 0 !important;
	white-space: nowrap;
}

/* --- RIGHT: Goal card --- */
.mission-visual-col {
	display: flex;
	align-items: center;
	justify-content: center;
}

.mission-goal-card {
	background: linear-gradient(145deg, #1a1714 0%, #262118 100%);
	border-radius: 24px;
	padding: clamp(28px, 4vw, 44px);
	color: #ffffff;
	position: relative;
	overflow: hidden;
	width: 100%;
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
	            box-shadow 0.5s ease;
}

.mission-goal-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

/* Subtle background glow */
.mission-goal-card::before {
	content: '';
	position: absolute;
	top: -30%;
	right: -20%;
	width: 60%;
	height: 60%;
	background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
	pointer-events: none;
}

/* Badge */
.mission-goal-badge {
	background: rgba(255, 215, 0, 0.12);
	border: 1px solid rgba(255, 215, 0, 0.2);
	border-radius: 100px;
	padding: 6px 16px;
	margin-bottom: 20px !important;
	display: inline-flex !important;
	width: auto !important;
}

.mission-goal-badge p {
	font-size: 0.75rem;
	font-weight: 600;
	color: #FFD700;
	margin: 0 !important;
	letter-spacing: 0.04em;
}

/* Year number */
.mission-goal-year {
	font-size: clamp(3rem, 8vw, 4.5rem);
	font-weight: 900;
	background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 16px !important;
	letter-spacing: -0.03em;
}

/* Goal text */
.mission-goal-text {
	color: rgba(255, 255, 255, 0.7);
	font-size: clamp(0.88rem, 1.5vw, 0.98rem);
	line-height: 1.75;
	margin-bottom: 24px !important;
}

.mission-goal-text strong {
	color: #FFD700;
	font-weight: 600;
}

/* Divider in card */
.mission-goal-line {
	width: 100%;
	height: 1px !important;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	margin: 0 0 24px 0 !important;
	opacity: 1;
}

/* Stats row */
.mission-goal-stats {
	gap: 12px !important;
	width: 100%;
}

.mission-stat {
	text-align: center;
	flex: 1;
	min-width: 70px;
}

.mission-stat-number {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	color: #FFD700;
	line-height: 1.1;
	margin-bottom: 4px !important;
}

.mission-stat-label {
	font-size: 0.7rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.4);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0 !important;
}

/* --- Responsive --- */
@media (max-width: 768px) {
	.mission-layout {
		flex-direction: column !important;
	}

	.mission-text-col,
	.mission-visual-col {
		flex-basis: 100% !important;
	}

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

	.mission-values {
		justify-content: center;
	}

	.mission-goal-card {
		max-width: 440px;
		margin: 0 auto;
	}

	.mission-goal-stats {
		justify-content: center !important;
	}
}

/* ============================================
   PLEDGE — Emotional quote section
   ============================================ */
.pledge-section {
	background: linear-gradient(170deg, #0c1628 0%, #0f1b30 50%, #0c1628 100%);
	position: relative;
	z-index: 3;
	overflow: hidden;
}

/* Subtle gold radials in background */
.pledge-section::before {
	content: '';
	position: absolute;
	top: -20%;
	left: -10%;
	width: 50%;
	height: 140%;
	background: radial-gradient(ellipse, rgba(255, 215, 0, 0.04) 0%, transparent 70%);
	pointer-events: none;
}

.pledge-section::after {
	content: '';
	position: absolute;
	bottom: -20%;
	right: -10%;
	width: 50%;
	height: 140%;
	background: radial-gradient(ellipse, rgba(255, 165, 0, 0.03) 0%, transparent 70%);
	pointer-events: none;
}

.pledge-inner {
	position: relative;
	z-index: 1;
}

.pledge-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 28px;
	padding: clamp(36px, 6vw, 64px) clamp(28px, 5vw, 56px);
	position: relative;
	overflow: hidden;
}

/* Decorative gold border glow */
.pledge-card::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 20%;
	right: 20%;
	height: 2px;
	background: linear-gradient(90deg, transparent, #FFD700, transparent);
	opacity: 0.5;
}

.pledge-quote-mark {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(4rem, 10vw, 6rem);
	line-height: 0.6;
	color: #FFD700;
	opacity: 0.2;
	margin-bottom: 0 !important;
}

.pledge-heading {
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 8px !important;
	letter-spacing: -0.01em;
}

.pledge-accent {
	width: 40px;
	height: 3px;
	background: linear-gradient(90deg, #FFD700, #FF8C00);
	border: none;
	border-radius: 2px;
	margin: 16px auto 28px !important;
	opacity: 1;
}

.pledge-text {
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.9;
	max-width: 650px;
	margin: 0 auto 28px !important;
}

.pledge-text strong {
	color: #FFD700;
	font-weight: 600;
}

.pledge-signature {
	gap: 8px !important;
}

.pledge-signature p {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.35);
	font-weight: 500;
	letter-spacing: 0.02em;
	margin: 0 !important;
}

/* ============================================
   REGISTRATION — 2-Column form section
   ============================================ */
.register-section {
	background: #faf8f4;
	position: relative;
	z-index: 3;
}

.register-layout {
	align-items: center !important;
	gap: clamp(32px, 5vw, 60px) !important;
}

/* Left column text */
.register-label {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: #b8860b;
	margin-bottom: 12px !important;
}

.register-title {
	font-size: clamp(1.5rem, 3.5vw, 2.2rem);
	font-weight: 800;
	color: #1a1a1a;
	line-height: 1.2;
	margin-bottom: 20px !important;
	letter-spacing: -0.02em;
}

.register-title em {
	color: #b8860b;
	font-style: normal;
}

.register-desc {
	color: #555;
	font-size: clamp(0.92rem, 1.5vw, 1rem);
	line-height: 1.8;
	margin-bottom: 28px !important;
}

/* Feature checklist */
.register-features {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.register-feature {
	gap: 0 !important;
}

.register-feature p {
	font-size: 0.92rem;
	color: #444;
	margin: 0 !important;
	line-height: 1.5;
}

.register-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: linear-gradient(135deg, #FFD700, #FF8C00);
	color: #1a1a1a;
	font-size: 0.65rem;
	font-weight: 800;
	margin-right: 10px;
	flex-shrink: 0;
}

/* Right column form card */
.register-form-card {
	background: #ffffff;
	border-radius: 24px;
	padding: clamp(28px, 4vw, 44px);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	border: 1px solid #ede9e2;
}

.register-form-heading {
	font-size: 1.3rem;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 6px !important;
}

.register-form-sub {
	color: #888;
	font-size: 0.88rem;
	margin-bottom: 24px !important;
}

/* CF7 form field styling */
.register-form-card .wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.register-form-card .wpcf7-form p {
	margin: 0;
}

.register-form-card .wpcf7-form label {
	display: block;
	font-size: 0.8rem;
	font-weight: 600;
	color: #444;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 6px;
}

.register-form-card .wpcf7-form input[type="text"],
.register-form-card .wpcf7-form input[type="email"],
.register-form-card .wpcf7-form input[type="tel"],
.register-form-card .wpcf7-form input[type="url"],
.register-form-card .wpcf7-form textarea,
.register-form-card .wpcf7-form select {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #e0dcd5;
	border-radius: 10px;
	font-size: 0.92rem;
	font-family: inherit;
	color: #1a1a1a;
	background: #fafaf8;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	outline: none;
}

.register-form-card .wpcf7-form input:focus,
.register-form-card .wpcf7-form textarea:focus,
.register-form-card .wpcf7-form select:focus {
	border-color: #FFD700;
	box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.12);
}

.register-form-card .wpcf7-form textarea {
	min-height: 100px;
	resize: vertical;
}

/* Submit button */
.register-form-card .wpcf7-form input[type="submit"],
.register-form-card .wpcf7-submit {
	background: linear-gradient(135deg, #FFD700, #f0c400);
	color: #1a1a1a;
	font-weight: 700;
	font-size: 0.95rem;
	padding: 14px 32px;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
	            box-shadow 0.3s ease;
	letter-spacing: 0.02em;
	width: 100%;
	margin-top: 4px;
}

.register-form-card .wpcf7-form input[type="submit"]:hover,
.register-form-card .wpcf7-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(255, 215, 0, 0.25);
}

/* Validation messages */
.register-form-card .wpcf7-not-valid-tip {
	font-size: 0.78rem;
	color: #E74C3C;
	margin-top: 4px;
}

.register-form-card .wpcf7-response-output {
	border-radius: 8px;
	font-size: 0.88rem;
	padding: 12px 16px;
	margin: 12px 0 0 !important;
}

/* --- Responsive --- */
@media (max-width: 768px) {
	.pledge-card {
		padding: clamp(28px, 5vw, 40px) clamp(20px, 4vw, 32px);
	}

	.register-layout {
		flex-direction: column !important;
	}

	.register-text-col,
	.register-form-col {
		flex-basis: 100% !important;
	}

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

	.register-features {
		align-items: center;
	}

	.register-form-card {
		max-width: 500px;
		margin: 0 auto;
	}
}

/* ============================================
   ACTIVITIES — Numbered card grid
   ============================================ */
.activities-section {
	background: linear-gradient(180deg, #f6f4f0 0%, #ffffff 100%);
	position: relative;
	z-index: 3;
}

/* Section header */
.activities-label {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: #b8860b;
	margin-bottom: 12px !important;
}

.activities-title {
	font-size: clamp(1.5rem, 3.5vw, 2.4rem);
	font-weight: 800;
	color: #1a1a1a;
	line-height: 1.2;
	margin-bottom: 16px !important;
	letter-spacing: -0.02em;
}

.activities-title em {
	color: #b8860b;
	font-style: normal;
}

.activities-section .section-subheading {
	color: #666;
}

/* Card grid */
.activity-grid {
	gap: clamp(20px, 3vw, 28px) !important;
}

/* Card base */
.activity-card {
	background: #ffffff;
	border-radius: 20px;
	padding: clamp(28px, 3vw, 36px);
	height: 100%;
	position: relative;
	overflow: hidden;
	border: 1px solid #ede9e2;
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
	            box-shadow 0.5s ease,
	            border-color 0.3s ease;
	display: flex;
	flex-direction: column;
}

/* Gold left accent — grows on hover */
.activity-card::before {
	content: '';
	position: absolute;
	top: 20%;
	left: 0;
	width: 4px;
	height: 0;
	background: linear-gradient(180deg, #FFD700, #FF8C00);
	border-radius: 0 4px 4px 0;
	transition: height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
	            top 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.activity-card:hover::before {
	height: 60%;
	top: 20%;
}

/* Background shimmer */
.activity-card::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(255, 215, 0, 0.04) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}

.activity-card:hover::after {
	opacity: 1;
}

.activity-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
	border-color: rgba(255, 215, 0, 0.3);
}

/* Step number */
.activity-step {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 900;
	color: rgba(0, 0, 0, 0.04);
	line-height: 1;
	margin-bottom: 16px !important;
	letter-spacing: -0.03em;
	transition: color 0.4s ease;
	position: relative;
	z-index: 1;
}

.activity-card:hover .activity-step {
	color: rgba(255, 215, 0, 0.15);
}

/* Icon box */
.activity-icon-box {
	width: 72px;
	height: 72px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
	            box-shadow 0.4s ease;
	position: relative;
	z-index: 1;
	flex-shrink: 0;
}

.activity-icon-box--gold {
	background: linear-gradient(135deg, #fef9e7, #fdf0c8);
}

.activity-icon-box--dark {
	background: linear-gradient(135deg, #f0ece4, #e8e2d6);
}

.activity-icon-box--warm {
	background: linear-gradient(135deg, #fff3e0, #ffe8cc);
}

.activity-card:hover .activity-icon-box {
	transform: scale(1.1) rotate(-5deg);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.activity-icon-box p {
	margin: 0 !important;
	line-height: 1;
}

/* Card title */
.activity-card-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 12px !important;
	position: relative;
	z-index: 1;
	transition: color 0.3s ease;
}

.activity-card:hover .activity-card-title {
	color: #b8860b;
}

/* Card description */
.activity-card-desc {
	color: #666;
	font-size: clamp(0.88rem, 1.5vw, 0.95rem);
	line-height: 1.75;
	margin-bottom: 20px !important;
	position: relative;
	z-index: 1;
	flex: 1;
}

/* Tags at bottom */
.activity-card-tag {
	font-size: 0.72rem;
	font-weight: 600;
	color: #b8860b;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 0 !important;
	padding-top: 16px;
	border-top: 1px solid #f0ece4;
	position: relative;
	z-index: 1;
	transition: border-color 0.3s ease;
}

.activity-card:hover .activity-card-tag {
	border-top-color: rgba(255, 215, 0, 0.3);
}

.no-display {
	display: none;
	opacity: 0;
	visibility: hidden;
	height: 0px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
	.activity-grid {
		flex-wrap: wrap !important;
		flex-direction: row !important;
	}

	.activity-col {
		flex-basis: calc(50% - 14px) !important;
		margin-bottom: 20px;
	}

	.activity-col:last-child {
		flex-basis: 100% !important;
	}
}

@media (max-width: 480px) {
	.activity-grid {
		flex-direction: column !important;
	}

	.activity-col {
		flex-basis: 100% !important;
	}
}

/* ============================================
   ACHIEVEMENTS — Deep navy blue
   ============================================ */
.achievements-section {
	background: linear-gradient(170deg, #0c1628 0%, #121e36 50%, #0c1628 100%);
	color: #ffffff;
	position: relative;
	z-index: 3;
}

.achievements-section .section-heading {
	color: #ffffff;
}

.achievements-section .section-subheading {
	color: rgba(255, 255, 255, 0.6);
}

/* Override accent line for dark bg */
.achievements-section .accent-line {
	background: linear-gradient(90deg, #FFD700, #FFA500);
}

.achievement-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: clamp(28px, 3vw, 40px) clamp(20px, 3vw, 28px);
	text-align: center;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	height: 100%;
	position: relative;
	overflow: hidden;
}

.achievement-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}

.achievement-card:hover::before {
	opacity: 1;
}

.achievement-card:hover {
	background: rgba(255, 215, 0, 0.06);
	border-color: rgba(255, 215, 0, 0.2);
	transform: translateY(-6px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.achievement-icon {
	font-size: 2.5rem;
	margin-bottom: 16px;
	display: block;
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.achievement-card:hover .achievement-icon {
	transform: scale(1.2);
}

.achievement-card h3 {
	color: #FFD700;
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 12px;
	position: relative;
	z-index: 1;
}

.achievement-card p {
	color: rgba(255, 255, 255, 0.6);
	font-size: clamp(0.85rem, 1.5vw, 0.95rem);
	line-height: 1.7;
	position: relative;
	z-index: 1;
}

/* ============================================
   BOARD — Rich dark warm gray
   ============================================ */
.board-section {
	background: linear-gradient(170deg, #1a1714 0%, #211e19 50%, #1a1714 100%);
	position: relative;
	z-index: 3;
}

.board-section .section-heading {
	color: #ffffff;
}

.board-section .section-subheading {
	color: rgba(255, 255, 255, 0.55);
}

.board-section .accent-line {
	background: linear-gradient(90deg, #FFD700, #FFA500);
}

.board-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	overflow: hidden;
	text-align: center;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
	            box-shadow 0.4s ease, border-color 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.board-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
	border-color: rgba(255, 215, 0, 0.2);
}

.board-card-avatar {
	width: 100%;
	min-height: 240px;
	flex-shrink: 0;
	position: relative;
	overflow: hidden;
	background: #1a1714;
}

/* Real headshot image */
.board-card-avatar .wp-block-image,
.board-card-avatar .board-avatar-img {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
}

.board-card-avatar .wp-block-image img,
.board-card-avatar .board-avatar-img img {
	width: 100%;
	/* height: 240px; */
	height: 310px;
	object-fit: cover;
	object-position: center top;
	display: block;
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
	            filter 0.4s ease;
	filter: grayscale(30%);
}

.board-card:hover .board-card-avatar img {
	transform: scale(1.08);
	filter: grayscale(0%);
}

/* Gold gradient overlay */
.board-card-avatar::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(26, 23, 20, 0.7) 0%, transparent 50%);
	opacity: 1;
	transition: opacity 0.4s ease;
	z-index: 1;
	pointer-events: none;
}

.board-card:hover .board-card-avatar::after {
	background: linear-gradient(to top, rgba(255, 215, 0, 0.15) 0%, transparent 50%);
}

.board-card-info {
	padding: 20px 18px 26px;
	flex: 1;
}

.board-card-info h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 4px;
	transition: color 0.3s ease;
}

.board-card:hover .board-card-info h3 {
	color: #FFD700;
}

.board-card-role {
	color: #FFD700;
	font-weight: 600;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 12px;
}

.board-card-bio {
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.85rem;
	line-height: 1.65;
}

/* ============================================
   FOOTER — Premium dark
   ============================================ */
.site-footer,
footer.wp-block-template-part {
	background: #111111;
	color: #ffffff;
	padding: 0;
	position: relative;
	z-index: 3;
}

.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: clamp(48px, 8vw, 80px) clamp(20px, 4vw, 40px) 0;
}

/* --- Links base --- */
.site-footer a,
footer.wp-block-template-part a {
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
	transition: color 0.3s ease;
}

.site-footer a:hover,
footer.wp-block-template-part a:hover {
	color: #FFD700;
}

/* --- 4-column grid --- */
.footer-columns {
	gap: clamp(24px, 3vw, 40px) !important;
}

/* --- Column 1: Brand --- */
.footer-logo {
	margin-bottom: 16px;
}

.footer-logo img,
.footer-logo .wp-block-site-logo img {
	max-height: 44px;
	width: auto;
	display: block;
}

.footer-description {
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.88rem;
	line-height: 1.75;
	margin-bottom: 20px;
	max-width: 300px;
}

/* Social icons inline under description */
.footer-social-inline {
	margin-top: 0 !important;
	padding: 0;
}

.footer-social-inline .wp-social-link {
	width: 32px;
	height: 32px;
}

.footer-social-inline .wp-social-link svg {
	width: 16px;
	height: 16px;
	opacity: 0.45;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-social-inline .wp-social-link:hover svg {
	opacity: 1;
	transform: translateY(-2px);
}

/* --- Column headings --- */
.footer-heading {
	color: #ffffff !important;
	font-size: 0.78rem !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin-bottom: 20px !important;
	padding-bottom: 12px;
	border-bottom: 2px solid #FFD700;
	display: inline-block;
}

/* --- Nav lists --- */
.footer-nav {
	padding: 0 !important;
	margin: 0 !important;
	list-style: none;
}

.footer-nav li {
	margin-bottom: 12px;
	padding: 0;
}

.footer-nav li a {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.5);
	transition: color 0.3s ease, padding-left 0.3s ease;
	display: inline-block;
}

.footer-nav li a:hover {
	color: #FFD700;
	padding-left: 6px;
}

/* --- Contact items --- */
.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.footer-contact-item {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.88rem;
	line-height: 1.6;
	margin-bottom: 14px !important;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.footer-contact-icon {
	color: #FFD700;
	font-size: 1rem;
	flex-shrink: 0;
	line-height: 1.5;
}

/* --- Bottom bar --- */
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 20px 0;
	margin-top: clamp(36px, 6vw, 56px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.footer-copyright {
	color: rgba(255, 255, 255, 0.3) !important;
	font-size: 0.78rem !important;
	margin: 0 !important;
}

/* Bottom social icons */
.footer-bottom-social {
	margin: 0 !important;
	padding: 0;
}

.footer-bottom-social .wp-social-link {
	width: 28px;
	height: 28px;
}

.footer-bottom-social .wp-social-link svg {
	width: 14px;
	height: 14px;
	opacity: 0.35;
	transition: opacity 0.3s ease;
}

.footer-bottom-social .wp-social-link:hover svg {
	opacity: 1;
}

/* Hide inline social on desktop (show only bottom), show on mobile */
@media (min-width: 769px) {
	.footer-social-inline {
		display: none !important;
	}
}

/* --- Footer responsive --- */
@media (max-width: 768px) {
	.footer-columns {
		flex-direction: column !important;
		gap: 36px !important;
	}

	.footer-col {
		flex-basis: 100% !important;
		text-align: center;
	}

	.footer-description {
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	.footer-heading {
		display: block !important;
		text-align: center;
	}

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

	.footer-contact-item {
		justify-content: center;
	}

	.footer-social-inline {
		justify-content: center;
		display: flex !important;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
		gap: 12px;
	}

	.footer-bottom-social {
		justify-content: center;
	}

	.footer-logo {
		display: flex;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.footer-inner {
		padding: 36px 16px 0;
	}

	.footer-copyright {
		font-size: 0.72rem !important;
	}
}

/* ============================================
   GLOBAL
   ============================================ */
.wp-block-button__link {
	transition: all 0.3s ease;
}

.wp-block-button__link:hover {
	transform: translateY(-2px);
}

.wp-block-columns {
	gap: clamp(16px, 3vw, 30px) !important;
}
/* 28-07-2026 */
.wp-theme-dishoom-boyz-theme > .wp-site-blocks {
	overflow: hidden;
}
/* 28-07-2026 */
/* ============================================
   RESPONSIVE
   ============================================ */
/* 28-07-2026 */
/* - BOARD RESPONSIVE - */
/* Desktop */
@media (min-width: 992px) {
    /* Center second row */
    .board-section .board-block-row:last-child {
        justify-content: center !important;
    }
    /* Keep bottom cards same width as top cards */
    .board-section .board-block-row:last-child > .board-block-col {
        flex: 0 0 calc(33.333% - 20px) !important;
        max-width: calc(33.333% - 20px) !important;
    }
}
/* 28-07-2026 */
@media (max-width: 1024px) {
	.header-container {
		padding: 12px 24px;
	}

	.hero-section {
		min-height: 60vh;
	}

	.board-card-avatar {
		min-height: 170px;
	}
}
/* 28-07-2026 */
/* Tablet */
@media (max-width: 991px) and (min-width: 782px) {
    .board-section .board-block-row {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 20px !important;
    }
    .board-section .board-block-row .board-block-col {
        flex: 0 0 calc(50% - 10px) !important;
        max-width: calc(50% - 10px) !important;
        margin-bottom: 20px;
    }
    /* Keep second row centered */
    .board-section .board-block-row:last-child {
        justify-content: center !important;
    }
    .board-section .board-block-row:last-child > .board-block-col {
        flex: 0 0 calc(50% - 10px) !important;
        max-width: calc(50% - 10px) !important;
    }
}
/* Mobile */
@media (max-width: 781px) {
    .board-section .board-block-row {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        gap: 20px !important;
    }
    .board-section .board-block-row .board-block-col {
        flex: 0 0 65% !important;
        max-width: 65% !important;
        width: 65% !important;
        margin-bottom: 20px;
    }
    .board-card {
        width: 100%;
    }
    .board-card-avatar {
        min-height: 180px;
    }
    .board-card-avatar img {
        height: 180px;
        object-fit: cover;
    }
	.board-section .board-block-row .board-card-avatar .wp-block-image img,
	.board-section .board-block-row .board-card-avatar .board-avatar-img img {
		height: 340px!important;
	}
}
/* 28-07-2026 */
@media (max-width: 768px) {
	html {
		scroll-padding-top: 65px;
	}

	.header-container {
		padding: 10px 16px;
	}

	.header-logo img,
	.header-logo .wp-block-site-logo img,
	header.wp-block-template-part .wp-block-site-logo img {
		max-height: 40px;
	}

	.header-scrolled .header-logo img,
	.header-scrolled .wp-block-site-logo img {
		max-height: 36px;
	}

	/* .hero-section {
		min-height: 70vh;
	} */

	.scroll-indicator {
		display: none;
	}

	.activities-section .wp-block-columns {
		flex-wrap: wrap !important;
		flex-direction: row !important;
	}

	.activities-section .wp-block-column {
		flex-basis: calc(50% - 10px) !important;
		margin-bottom: 20px;
	}

	.activities-section .wp-block-column:last-child {
		flex-basis: 100% !important;
	}
	/* 28-07-2026 */
	/* .board-section .wp-block-columns {
		flex-wrap: wrap !important;
		flex-direction: row !important;
	}

	.board-section .wp-block-column {
		flex-basis: calc(50% - 10px) !important;
		margin-bottom: 20px;
	} */
	/* 28-07-2026 */
	.mission-section .wp-block-columns,
	.achievements-section .wp-block-columns {
		flex-direction: column !important;
	}

	.mission-section .wp-block-column,
	.achievements-section .wp-block-column {
		flex-basis: 100% !important;
		margin-bottom: 20px;
	}

	.site-footer .wp-block-columns,
	footer.wp-block-template-part .wp-block-columns {
		flex-direction: column !important;
		gap: 30px !important;
	}

	.site-footer .wp-block-column,
	footer.wp-block-template-part .wp-block-column {
		flex-basis: 100% !important;
	}

	.footer-description {
		max-width: 100%;
	}
}
/* 30-04-2026 */
@media (max-width: 650px) {
	.header-logo img,
	.header-logo .wp-block-site-logo img,
	header.wp-block-template-part .wp-block-site-logo img {
		max-height: 70px !important;
	}
	.hero-content h1{
		font-size:34px!important;
	}
}

@media (max-width: 599px) {
	.wp-block-navigation__responsive-container-close,
	.wp-block-navigation__responsive-container-open {
		color: #FFF!important;
	}

	/* Mobile menu — full viewport drawer */
	.wp-block-navigation__responsive-container.is-menu-open,
	.wp-block-navigation__responsive-container.has-modal-open,
	header.wp-block-template-part .wp-block-navigation__responsive-container.is-menu-open {
		position: fixed !important;
		inset: 0 !important;
		top: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		left: 0 !important;
		width: 100vw !important;
		height: 100vh !important;
		height: 100dvh !important;
		max-height: 100vh !important;
		max-height: 100dvh !important;
		z-index: 100000 !important;
		overflow-y: auto !important;
		overscroll-behavior: contain;
		background: linear-gradient(170deg,#1a1714 0%,#211e19 50%,#1a1714 100%) !important;
	}

	.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
		min-height: 100vh;
		min-height: 100dvh;
		padding: 90px 28px 40px;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		gap: 18px;
	}

	/* Inner nav container (ul) spacing — covers any wrapper depth */
	.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container,
	.wp-block-navigation__responsive-container.is-menu-open ul.wp-block-navigation__container,
	.wp-block-navigation__responsive-container.is-menu-open ul {
		display: flex !important;
		flex-direction: column !important;
		gap: 18px !important;
		width: 100%;
		margin: 0 !important;
		padding: 0 !important;
		list-style: none !important;
	}

	/* Direct vertical margin on each item — works regardless of parent display */
	.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item,
	.wp-block-navigation__responsive-container.is-menu-open li.wp-block-navigation-item,
	.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container > li {
		display: block !important;
		width: 100% !important;
		margin: 0 0 18px 0 !important;
		padding: 0 0 18px 0 !important;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
	}

	.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item:last-child,
	.wp-block-navigation__responsive-container.is-menu-open li.wp-block-navigation-item:last-child,
	.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container > li:last-child {
		margin-bottom: 0 !important;
		padding-bottom: 0 !important;
		border-bottom: none !important;
	}

	.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item a {
		color: rgba(255, 255, 255, 0.95) !important;
		font-size: 1.1rem;
		padding: 6px 4px !important;
		width: 100%;
		display: flex !important;
		align-items: center;
		justify-content: space-between;
	}

	.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item a::after {
		color: rgba(255, 255, 255, 0.35);
	}

	.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item a:hover,
	.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item a:focus {
		color: #FFD700 !important;
	}

	/* Close button anchored to viewport */
	.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close {
		position: fixed !important;
		top: 18px !important;
		right: 18px !important;
		z-index: 100001 !important;
	}

	/* Lock body scroll while drawer is open */
	body.has-modal-open {
		overflow: hidden !important;
		position: fixed;
		width: 100%;
	}
	/* 28-07-2026 */
	.board-section .board-block-row .board-block-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
	.board-section .board-block-row .board-card-avatar .wp-block-image img,
	.board-section .board-block-row .board-card-avatar .board-avatar-img img {
		height: 410px!important;
	}
	/* 28-07-2026 */
}
/* 30-04-2026 */
@media (max-width: 480px) {
	html {
		scroll-padding-top: 55px;
	}

	.header-container {
		padding: 8px 12px;
	}
.hero-content h1{
		font-size:32px!important;
	}
	.header-logo img,
	.header-logo .wp-block-site-logo img,
	header.wp-block-template-part .wp-block-site-logo img {
		max-height: 34px;
	}

	/* .hero-section {
		min-height: 65vh;
	} */

	.wp-block-columns {
		flex-direction: column !important;
	}

	.wp-block-column {
		flex-basis: 100% !important;
		margin-bottom: 16px;
	}
	/* 28-07-2026 */
	.activities-section .wp-block-column/*,
	.board-section .wp-block-column*/ {
		flex-basis: 100% !important;
	}
	/* 28-07-2026 */
	.board-card-avatar {
		min-height: 150px;
	}

	.activity-card-image {
		min-height: 140px;
	}

	.footer-bottom p {
		font-size: 0.75rem;
	}
}

@supports (-webkit-touch-callout: none) {
	.hero-section::before {
		position: absolute;
		height: 100%;
	}
}