/* ==========================================================================
   Pravin Dubey theme — main stylesheet
   ========================================================================== */

:root {
	--color-primary: #E63329;
	--color-primary-dark: #C22620;
	--color-ink: #1B1B1F;
	--color-ink-soft: #4A4A52;
	--color-bg: #FFFFFF;
	--color-bg-soft: #FAF7F5;
	--color-bg-tint: #FDF1EF;
	--color-dark: #17171B;
	--color-dark-soft: #232329;
	--color-border: #ECE6E3;
	--font-heading: 'Poppins', 'Segoe UI', sans-serif;
	--font-body: 'Inter', 'Segoe UI', sans-serif;
	--radius-lg: 18px;
	--radius-md: 12px;
	--radius-sm: 8px;
	--shadow-sm: 0 4px 14px rgba(20, 15, 15, 0.06);
	--shadow-md: 0 10px 30px rgba(20, 15, 15, 0.10);
	--shadow-lg: 0 20px 50px rgba(20, 15, 15, 0.14);
	--container: 1240px;
}

/* -------------------------------------------------------------------- */
/* Reset                                                                 */
/* -------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--color-ink);
	background: var(--color-bg);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
	font-family: var(--font-heading);
	color: var(--color-ink);
	line-height: 1.2;
	margin: 0 0 14px;
	font-weight: 700;
}
p { margin: 0 0 16px; color: var(--color-ink-soft); }
.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

/* -------------------------------------------------------------------- */
/* Buttons                                                              */
/* -------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 26px;
	border-radius: var(--radius-sm);
	font-weight: 600;
	font-size: 15px;
	font-family: var(--font-heading);
	border: 2px solid transparent;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
	white-space: nowrap;
}
.btn small { display: block; font-weight: 400; font-size: 11.5px; opacity: .85; margin-top: 2px; }
.btn span { display: flex; flex-direction: column; line-height: 1.3; }
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--color-primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--color-primary-dark); box-shadow: var(--shadow-md); }

.btn-outline { background: #fff; color: var(--color-ink); border-color: var(--color-border); }
.btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary); }

.btn-dark { background: var(--color-dark); color: #fff; }
.btn-dark:hover { background: var(--color-dark-soft); }

.btn-outline-sm, .btn-sm {
	padding: 10px 18px;
	font-size: 13.5px;
	border: 2px solid var(--color-primary);
	color: var(--color-primary);
	background: transparent;
	border-radius: var(--radius-sm);
}
.btn-outline-sm:hover, .btn-sm:hover { background: var(--color-primary); color: #fff; }
.header-cta.btn-primary { border-color: var(--color-primary); color:#fff; padding: 10px 18px; font-size: 14px;}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--color-primary);
	margin-bottom: 12px;
}

.section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
.section-head h2 { margin-bottom: 0; }
.section-head--center { justify-content: center; text-align: center; }
.section-head--center > div { max-width: 640px; }
.section-head--center .eyebrow { justify-content: center; }

/* -------------------------------------------------------------------- */
/* Header                                                                */
/* -------------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255,255,255,.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--color-border);
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 14px 24px;
}
.brand-logo { display: flex; align-items: center; gap: 12px; }
.brand-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 10px;
	background: var(--color-dark);
	color: #fff;
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 18px;
	flex-shrink: 0;
}
.brand-mark .accent { color: var(--color-primary); }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-name { font-family: var(--font-heading); font-weight: 600; font-size: 16px; color: var(--color-ink); }
.brand-name strong { color: var(--color-primary); font-weight: 800; }
.brand-tagline { font-size: 11px; color: var(--color-ink-soft); }
.custom-logo-wrap img { max-height: 56px; width: auto; }

.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-menu a {
	font-family: var(--font-heading);
	font-size: 14.5px;
	font-weight: 500;
	color: var(--color-ink);
	position: relative;
	padding: 6px 0;
}
.nav-menu a:hover { color: var(--color-primary); }
.nav-menu a::after {
	content: "";
	position: absolute; left: 0; bottom: -2px;
	width: 0; height: 2px; background: var(--color-primary);
	transition: width .2s ease;
}
.nav-menu a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none; border: none; padding: 6px;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--color-ink); border-radius: 2px; }

/* -------------------------------------------------------------------- */
/* Hero                                                                  */
/* -------------------------------------------------------------------- */
.hero { padding: 70px 0 90px; overflow: hidden; background: linear-gradient(180deg, var(--color-bg-tint) 0%, #fff 75%); }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.hero-title { font-size: clamp(38px, 5vw, 58px); font-weight: 800; margin-bottom: 16px; letter-spacing: -.01em; }
.hero-title .accent { color: var(--color-primary); }
.hero-subtitle { font-family: var(--font-heading); font-weight: 600; font-size: 15.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--color-ink); margin-bottom: 20px; }
.hero-subtitle .dot { color: var(--color-primary); margin: 0 6px; }
.hero-desc { font-size: 16.5px; max-width: 520px; margin-bottom: 30px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 34px; }
.hero-follow { display: flex; align-items: center; gap: 16px; }
.follow-label { font-family: var(--font-heading); font-weight: 600; font-size: 13.5px; color: var(--color-ink-soft); }

.social-icons { display: flex; gap: 10px; }
.social-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 38px; height: 38px; border-radius: 50%;
	background: #fff; border: 1.5px solid var(--color-border);
	color: var(--color-ink); font-size: 14px;
	transition: all .18s ease;
}
.social-icon:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; transform: translateY(-2px); }

.hero-media { position: relative; display: flex; justify-content: center; }
.hero-brush {
	position: absolute; inset: -6% -10%;
	background: radial-gradient(60% 60% at 60% 35%, rgba(230,51,41,.16), rgba(230,51,41,0) 70%);
	filter: blur(2px);
	z-index: 0;
}
.hero-photo {
	position: relative; z-index: 1;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	width: 100%;
	max-width: 480px;
	aspect-ratio: 3/2;
	object-fit: cover;
}

/* -------------------------------------------------------------------- */
/* About                                                                 */
/* -------------------------------------------------------------------- */
.about { padding: 90px 0; }
.about-inner { display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: flex-start; }
.about-copy p { font-size: 16px; max-width: 520px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-card {
	background: var(--color-bg-soft);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: 26px 22px;
	transition: transform .2s ease, box-shadow .2s ease;
}
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: #fff; }
.about-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 46px; height: 46px; border-radius: 12px;
	background: var(--color-bg-tint); color: var(--color-primary);
	font-size: 18px; margin-bottom: 14px;
}
.about-card h3 { font-size: 16px; margin-bottom: 8px; }
.about-card p { font-size: 13.5px; margin-bottom: 0; }

/* -------------------------------------------------------------------- */
/* Blog / Company cards                                                  */
/* -------------------------------------------------------------------- */
.blog-company { padding: 20px 0 90px; }
.blog-company-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.feature-card {
	border-radius: var(--radius-lg);
	padding: 42px 38px;
	box-shadow: var(--shadow-sm);
}
.feature-card--blog { background: var(--color-bg-tint); }
.feature-card--company { background: var(--color-dark); color: #fff; }
.feature-card--company .eyebrow { color: #ff8b7f; }
.feature-card--company h2 { color: #fff; }
.feature-card--company p { color: #C9C9D1; }
.feature-card p { max-width: 460px; }

.feature-taglist { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; }
.feature-taglist li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 500; color: var(--color-ink); }
.feature-taglist li i { color: var(--color-primary); width: 18px; text-align: center; }
.feature-taglist--dark li { color: #E5E5EA; }
.feature-taglist--dark li i { color: #ff8b7f; }

/* -------------------------------------------------------------------- */
/* Awards                                                                */
/* -------------------------------------------------------------------- */
.awards { padding: 90px 0; background: var(--color-bg-soft); }
.awards-track {
	display: flex;
	gap: 22px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 10px;
	scrollbar-width: none;
}
.awards-track::-webkit-scrollbar { display: none; }
.award-card {
	position: relative;
	flex: 0 0 auto;
	width: 260px;
	aspect-ratio: 1/1;
	border-radius: var(--radius-md);
	overflow: hidden;
	scroll-snap-align: start;
	box-shadow: var(--shadow-sm);
}
.award-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.award-card:hover img { transform: scale(1.06); }
.award-card-caption {
	position: absolute; inset: auto 0 0 0;
	padding: 40px 18px 16px;
	background: linear-gradient(0deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,0) 100%);
	color: #fff;
}
.award-card-caption h3 { color: #fff; font-size: 15px; margin-bottom: 2px; }
.award-card-caption p { color: #E9E9EE; font-size: 12px; margin-bottom: 0; }
.awards-nav { display: flex; gap: 12px; margin-top: 24px; justify-content: flex-end; }
.awards-arrow {
	width: 42px; height: 42px; border-radius: 50%;
	border: 1.5px solid var(--color-border);
	background: #fff; color: var(--color-ink);
	display: inline-flex; align-items: center; justify-content: center;
	transition: all .18s ease;
}
.awards-arrow:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* -------------------------------------------------------------------- */
/* Media / Gallery                                                       */
/* -------------------------------------------------------------------- */
.gallery { padding: 90px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-photo { position: relative; display: block; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1/1; box-shadow: var(--shadow-sm); }
.gallery-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-photo:hover img { transform: scale(1.08); }
.gallery-photo:hover .event-photo-zoom { opacity: 1; }

/* -------------------------------------------------------------------- */
/* Videos                                                                */
/* -------------------------------------------------------------------- */
.videos { padding: 90px 0; }
.videos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.video-card { background: none; border: none; padding: 0; text-align: left; display: block; }
.video-thumb-wrap { position: relative; display: block; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4/3; }
.video-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.video-card:hover .video-thumb-wrap img { transform: scale(1.06); }
.video-play-btn {
	position: absolute; inset: 0; margin: auto;
	width: 56px; height: 56px; border-radius: 50%;
	background: rgba(230,51,41,.92); color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-size: 18px;
	box-shadow: 0 6px 18px rgba(0,0,0,.28);
	transition: transform .2s ease;
}
.video-card:hover .video-play-btn { transform: scale(1.1); }
.video-title { display: block; margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--color-ink); font-family: var(--font-heading); line-height: 1.4; }
.videos-viewmore { text-align: center; margin-top: 34px; }
.videos-viewmore a { color: var(--color-primary); font-weight: 600; font-family: var(--font-heading); font-size: 14.5px; }
.videos-viewmore a:hover { text-decoration: underline; }

/* Video modal */
.pd-video-modal, .pd-lightbox {
	position: fixed; inset: 0; z-index: 999;
	display: none; align-items: center; justify-content: center;
}
.pd-video-modal.is-open, .pd-lightbox.is-open { display: flex; }
.pd-video-modal-backdrop, .pd-lightbox-backdrop {
	position: absolute; inset: 0; background: rgba(10,8,8,.88);
}
.pd-video-modal-inner { position: relative; width: min(920px, 92vw); aspect-ratio: 16/9; z-index: 1; }
.pd-video-modal-frame, .pd-video-modal-frame iframe { width: 100%; height: 100%; border: 0; border-radius: var(--radius-md); }
.pd-video-modal-close, .pd-lightbox-close {
	position: absolute; top: -46px; right: 0; z-index: 2;
	width: 38px; height: 38px; border-radius: 50%;
	background: rgba(255,255,255,.12); color: #fff; border: none;
	display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.pd-lightbox-close { top: 24px; right: 24px; background: rgba(255,255,255,.14); }
.pd-video-modal-close:hover, .pd-lightbox-close:hover { background: var(--color-primary); }

/* -------------------------------------------------------------------- */
/* FAQ                                                                   */
/* -------------------------------------------------------------------- */
.faq { padding: 90px 0; background: var(--color-bg-soft); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: 4px 24px;
	transition: box-shadow .2s ease, border-color .2s ease;
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: rgba(230,51,41,.25); }
.faq-question {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 0;
	cursor: pointer;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 15.5px;
	color: var(--color-ink);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-caret { color: var(--color-primary); flex-shrink: 0; transition: transform .25s ease; font-size: 13px; }
.faq-item[open] .faq-caret { transform: rotate(180deg); }
.faq-answer { padding: 0 0 22px; }
.faq-answer p { margin-bottom: 0; font-size: 14.5px; max-width: 720px; }

/* -------------------------------------------------------------------- */
/* Explore CTA (footer top)                                              */
/* -------------------------------------------------------------------- */
.explore-cta { background: var(--color-dark); padding: 64px 0; }
.explore-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.explore-cta-text h2 { color: #fff; margin-bottom: 8px; font-size: 26px; }
.explore-cta-text p { color: #C9C9D1; margin-bottom: 0; max-width: 480px; }
.explore-cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.explore-cta .btn-dark { background: #fff; color: var(--color-dark); }
.explore-cta .btn-dark:hover { background: #E9E9EE; }

/* -------------------------------------------------------------------- */
/* Footer                                                                */
/* -------------------------------------------------------------------- */
.site-footer { background: var(--color-dark-soft); padding: 26px 0; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-copy { color: #B7B7C0; font-size: 13px; margin: 0; }
.footer-connect { display: flex; align-items: center; gap: 14px; }
.footer-connect span { color: #B7B7C0; font-size: 13px; }
.footer-connect .social-icon { width: 32px; height: 32px; font-size: 12px; background: transparent; border-color: rgba(255,255,255,.18); color: #fff; }
.footer-connect .social-icon:hover { background: var(--color-primary); border-color: var(--color-primary); }
.footer-made { color: #B7B7C0; font-size: 13px; margin: 0; }
.footer-made i { color: var(--color-primary); }

/* -------------------------------------------------------------------- */
/* Events & Recognition page                                             */
/* -------------------------------------------------------------------- */
.page-banner { position: relative; padding: 140px 0 80px; overflow: hidden; color: #fff; }
.page-banner-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.42) saturate(1.05); }
.page-banner-inner { position: relative; z-index: 1; max-width: 680px; }
.page-banner .eyebrow { color: #ffb3ac; }
.page-banner h1 { color: #fff; font-size: clamp(32px, 4.4vw, 46px); margin-bottom: 14px; }
.page-banner p { color: #E9E9EE; font-size: 16px; margin-bottom: 0; }

.events-intro { padding: 50px 0 10px; }
.events-groups { padding: 70px 0 100px; }
.event-group { margin-bottom: 66px; }
.event-group:last-child { margin-bottom: 0; }
.event-group-head { margin-bottom: 26px; max-width: 640px; }
.event-group-head h2 { font-size: 24px; margin-bottom: 8px; position: relative; padding-bottom: 12px; }
.event-group-head h2::after { content: ""; position: absolute; left: 0; bottom: 0; width: 56px; height: 3px; background: var(--color-primary); border-radius: 3px; }
.event-group-head p { margin-bottom: 0; font-size: 14.5px; }

.event-photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.event-photo { position: relative; display: block; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1/1; box-shadow: var(--shadow-sm); }
.event-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.event-photo:hover img { transform: scale(1.08); }
.event-photo-zoom {
	position: absolute; inset: 0; margin: auto; width: 40px; height: 40px;
	background: rgba(0,0,0,.5); color: #fff; border-radius: 50%;
	display: flex; align-items: center; justify-content: center; font-size: 14px;
	opacity: 0; transition: opacity .2s ease;
}
.event-photo:hover .event-photo-zoom { opacity: 1; }

.pd-lightbox-figure { position: relative; z-index: 1; max-width: 88vw; max-height: 84vh; text-align: center; }
.pd-lightbox-figure img { max-width: 88vw; max-height: 76vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); margin: 0 auto; }
.pd-lightbox-figure figcaption { color: #fff; margin-top: 16px; font-family: var(--font-heading); font-size: 14.5px; }
.pd-lightbox-arrow {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
	width: 46px; height: 46px; border-radius: 50%;
	background: rgba(255,255,255,.12); color: #fff; border: none;
	display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.pd-lightbox-arrow:hover { background: var(--color-primary); }
.pd-lightbox-prev { left: 24px; }
.pd-lightbox-next { right: 24px; }

/* -------------------------------------------------------------------- */
/* Responsive                                                            */
/* -------------------------------------------------------------------- */
@media (max-width: 1080px) {
	.hero-inner, .about-inner { grid-template-columns: 1fr; }
	.hero-media { order: -1; }
	.videos-grid { grid-template-columns: repeat(2, 1fr); }
	.event-photo-grid { grid-template-columns: repeat(3, 1fr); }
	.gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
	.nav-menu { position: fixed; top: 78px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: flex-start; gap: 0; padding: 10px 24px 20px; border-bottom: 1px solid var(--color-border); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: all .25s ease; }
	.nav-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
	.nav-menu li { width: 100%; border-bottom: 1px solid var(--color-border); }
	.nav-menu a { display: block; padding: 14px 0; }
	.menu-toggle { display: flex; }
	.header-cta { display: none; }
	.blog-company-grid { grid-template-columns: 1fr; }
	.about-grid { grid-template-columns: 1fr; }
	.explore-cta-inner { flex-direction: column; text-align: center; }
	.footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
	.hero { padding: 40px 0 60px; }
	.about, .blog-company, .awards, .videos, .gallery { padding: 60px 0; }
	.videos-grid { grid-template-columns: 1fr 1fr; }
	.event-photo-grid { grid-template-columns: repeat(2, 1fr); }
	.gallery-grid { grid-template-columns: repeat(2, 1fr); }
	.feature-taglist { grid-template-columns: 1fr; }
	.hero-buttons .btn { width: 100%; justify-content: center; }
	.page-banner { padding: 110px 0 60px; }
}

@media (max-width: 420px) {
	.videos-grid { grid-template-columns: 1fr; }
}
