@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

/* =========================================================
   Nature Coffee â€” Landing Page Hero Styles
   ========================================================= */

/* =========================================================
   HERO SECTION (LUXURY BLOCK DESIGN)
   ========================================================= */
.nc-hero--luxury {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-image: url('assets/images/Jitpur-84-compressed.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Gradient Overlay for Readability */
.nc-hero__bg-gradient {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%), linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.8) 100%);
}

.nc-hero__container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.nc-hero__content {
	max-width: 800px;
	margin-top: 0; /* Exactly center vertically */
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 1s ease, transform 1s ease;
}

.nc-hero__content.nc-animate-in {
	opacity: 1;
	transform: translateY(0);
}

.nc-hero__heading {
	font-family: 'Great Vibes', cursive;
	color: #FFFFFF;
	font-size: clamp(48px, 6vw, 84px);
	font-weight: 400;
	line-height: 1.1;
	margin: 0 0 10px 0;
	text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.nc-hero__description {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	color: #E2E8E4;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
	letter-spacing: 0.5px;
}

/* =========================================================
   Hero Buttons & Scroll Indicator
   ========================================================= */
.nc-hero__cta-wrapper {
	margin-top: 45px;
	display: flex;
	gap: 24px;
	justify-content: center;
	align-items: center;
}

.nc-hero__btn {
	padding: 18px 42px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	text-decoration: none !important;
	border-radius: 50px; /* Elegant pill shape */
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.nc-hero__btn--primary {
	background-color: #2C4538 !important; /* Rich Forest Green */
	color: #FFFFFF !important;
	border: 1px solid #2C4538 !important;
}

.nc-hero__btn--primary:hover {
	background-color: #3B5B4B !important;
	border-color: #3B5B4B !important;
	transform: translateY(-3px);
	box-shadow: 0 15px 25px rgba(0,0,0,0.25);
}

.nc-hero__btn--secondary {
	background-color: transparent !important;
	color: #FFFFFF !important;
	border: 1px solid rgba(255, 255, 255, 0.8) !important;
}

.nc-hero__btn--secondary:hover {
	background-color: #FFFFFF !important;
	color: #1C2B26 !important;
	border-color: #FFFFFF !important;
	transform: translateY(-3px);
	box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.nc-hero__scroll {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	opacity: 0;
	animation: fadeInScroll 2s ease forwards 1.5s;
}

.nc-hero__scroll-text {
	font-family: 'Inter', sans-serif;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: rgba(255, 255, 255, 0.6);
}

.nc-hero__scroll-line {
	width: 1px;
	height: 60px;
	background: rgba(255, 255, 255, 0.2);
	position: relative;
	overflow: hidden;
}

.nc-hero__scroll-line::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: #FFFFFF;
	animation: scrollLine 2s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes scrollLine {
	0% { transform: translateY(-100%); }
	100% { transform: translateY(200%); }
}
@keyframes fadeInScroll {
	to { opacity: 1; }
}

.nc-hero__cta-icon {
	width: 32px;
	height: 32px;
}

/* --- Golden Decorative Branch --- */
.nc-hero__branch-anchor {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	z-index: 10;
}

.nc-golden-branch {
	position: absolute;
	bottom: -90px; /* Straddle the sections */
	left: -15px; /* Stick to absolute left edge, slightly cropped */
	width: 300px; /* Bit smaller as requested */
	height: auto;
	pointer-events: none;
}

@media (max-width: 1024px) {
	.nc-golden-branch {
		display: none !important;
	}
}

/* --- Luxury Specifications Block --- */
.nc-hero__luxury-block {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(28, 43, 38, 0.45); /* Frosted translucent green */
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	z-index: 5;
	display: flex;
}

.nc-hero__block-grid {
	display: flex;
	width: 100%;
	box-shadow: 0 -10px 30px rgba(0,0,0,0.08);
}

.nc-hero__block-item {
	flex: 1;
	padding: 25px 30px;
	border-right: 1px solid rgba(255, 255, 255, 0.1); /* Subtle light border */
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.nc-hero__block-label {
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 600;
	color: #8AB293; /* Soft Sage Green */
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.nc-hero__block-value {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 18px;
	color: #FFFFFF;
	font-weight: 500;
}

.nc-hero__block-action {
	flex: 0 0 auto;
	display: flex;
}

.nc-hero__block-btn {
	background: #2C4538; /* Rich Forest Green */
	color: #FFFFFF;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease;
}

.nc-hero__block-btn:hover {
	background: #16241D; /* Darker green on hover */
}

/* =========================================================
   RESPONSIVE (LUXURY)
   ========================================================= */

@media (max-width: 992px) {
	.nc-hero__block-grid {
		flex-wrap: wrap;
	}
	.nc-hero__block-item {
		flex: 0 0 50%;
		border-bottom: 1px solid rgba(0,0,0,0.06);
	}
	.nc-hero__block-item:nth-child(2) {
		border-right: none;
	}
	.nc-hero__block-action {
		flex: 0 0 100%;
	}
	.nc-hero__block-btn {
		width: 100%;
		padding: 20px 0;
	}
}

@media (max-width: 576px) {
	.nc-hero__heading {
		font-size: 28px;
	}
	.nc-hero__block-item {
		flex: 0 0 100%;
		border-right: none;
	}
}

/* =========================================================
   ELEMENTOR OVERRIDES
   ========================================================= */
/* Hide the old Elementor hero section on the homepage */
.elementor-463 > .elementor-section:first-child {
	display: none !important;
}

/* =========================================================
   CUSTOM LUXURY NAVBAR (BANYAN TREE STYLE)
   ========================================================= */
/* Hide the default Elementor header */
header.site-header,
.elementor-location-header,
header[data-elementor-type="header"],
#nav-menu {
	display: none !important;
}

/* =========================================================
   Discover Our Estate Section Overrides
   ========================================================= */

/* Heading: Discover Our Estate */
.elementor-element-4b2eea41 .elementor-heading-title {
	font-family: 'Great Vibes', cursive !important;
	font-size: clamp(48px, 6vw, 84px) !important;
	font-weight: 400 !important;
	color: #FFFFFF !important;
	text-transform: none !important;
	letter-spacing: normal !important;
}

/* Paragraph: Welcome to Nature Coffee... */
.elementor-element-72f3c397 .elementor-widget-container {
	color: #FFFFFF !important;
	font-family: 'Inter', sans-serif !important;
	font-size: 16px !important;
	line-height: 1.6 !important;
	font-weight: 400 !important;
}

/* =========================================================
   Coffee Themed Form (Shortcode Override)
   ========================================================= */
.nc-coffee-form-container {
	position: relative;
	background-color: transparent;
	border: none;
	padding: 40px;
	max-width: 500px;
	margin: 0 auto;
	box-shadow: none;
	z-index: 1; /* Forces a stacking context so the watermark doesn't fall behind the page background */
}

/* Creative Watermark for the empty left space */
.nc-coffee-form-container::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 110%; /* Pushes the image to the left side of the screen behind the text */
	transform: translateY(-50%);
	width: 650px;
	height: 650px;
	background-image: url('./assets/images/coffeeelement.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0.15; /* Increased opacity to ensure it's visible */
	z-index: -1; /* Behind the form, but above the page background */
	pointer-events: none;
}

.nc-coffee-form-title {
	font-family: 'Great Vibes', cursive;
	font-size: 56px;
	color: #1a2a22; /* Dark Green */
	margin: 0 0 10px 0;
	font-weight: 400;
	line-height: 1.1;
}

.nc-coffee-form-subtitle {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: #4a5c51; /* Medium Dark Green */
	margin-bottom: 30px;
}

.nc-coffee-form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.nc-coffee-form input {
	width: 100%;
	padding: 15px 20px;
	background: rgba(255, 255, 255, 0.5); /* Very slight white fill */
	border: 1px solid rgba(26, 42, 34, 0.2); /* Subtle dark border */
	border-radius: 4px; /* Elegant slightly square corners */
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: #1a2a22; /* Dark text */
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.nc-coffee-form input::placeholder {
	color: rgba(26, 42, 34, 0.4);
}

.nc-coffee-form input:focus {
	outline: none;
	border-color: #D4AF37; /* Gold focus */
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.nc-coffee-form-btn {
	background: #2C4538;
	color: #FFFFFF;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 16px 30px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.3s ease;
	margin-top: 10px;
	width: 100%;
}

.nc-coffee-form-btn:hover {
	background: #3B5B4B;
}



.nc-custom-nav {
	position: absolute;
	top: 50px;
	left: 0;
	width: 100%;
	z-index: 1000;
	transition: all 0.4s ease;
	background-color: rgba(40, 50, 45, 0.4);
	background-image: 
		linear-gradient(to right, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.5) 80%, transparent 100%),
		linear-gradient(to right, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.5) 80%, transparent 100%),
		linear-gradient(to left, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.5) 80%, transparent 100%),
		linear-gradient(to left, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.5) 80%, transparent 100%);
	background-size: 
		calc(50% - 100px) 1px, 
		calc(50% - 100px) 1px,
		calc(50% - 100px) 1px, 
		calc(50% - 100px) 1px;
	background-position: 
		left top, 
		left bottom, 
		right top, 
		right bottom;
	background-repeat: no-repeat;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	display: flex;
	flex-direction: column;
	height: 55px; /* Fix the navbar height so it doesn't grow with the logo */
}

.nc-custom-nav.is-scrolled {
	position: fixed;
	top: 8px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.nc-custom-nav__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 40px;
	height: 100%;
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
}

.nc-custom-nav__left,
.nc-custom-nav__right {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	flex: 1;
}

.nc-custom-nav__logo {
	flex: 0 0 auto;
	text-align: center;
	padding: 0 40px;
}

.nc-custom-nav__logo img {
	height: 75px;
	width: auto;
}

.nc-custom-nav__left a,
.nc-custom-nav__right > a {
	color: #FFFFFF;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	text-decoration: none;
	transition: color 0.3s ease;
	text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.nc-custom-nav__left a:hover,
.nc-custom-nav__right > a:hover {
	color: #C4A44A;
}

.nc-custom-nav__extra {
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.2);
	padding: 15px 25px;
	gap: 25px;
	border-left: 1px solid rgba(255, 255, 255, 0.3);
	border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.nc-custom-nav__with,
.nc-custom-nav__lang {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #FFFFFF;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-decoration: none;
}

.nc-custom-nav__with svg,
.nc-custom-nav__lang svg {
	width: 16px;
	height: 16px;
}

.nc-custom-nav__hamburger {
	display: none;
}

@media (max-width: 1100px) {
	.nc-custom-nav__left,
	.nc-custom-nav__right {
		gap: 20px;
	}
	.nc-custom-nav__left a,
	.nc-custom-nav__right > a {
		font-size: 11px;
	}
}

/* =========================================================
   Mobile Responsiveness
   ========================================================= */
@media (max-width: 900px) {
	/* 1. Hide decorative leaf/coffee graphics on mobile (bulletproof rule) */
	.elementor-widget-image.elementor-absolute {
		display: none !important;
	}

	/* 2. Responsive Navbar (Hamburger Mode) */
	.nc-custom-nav {
		height: 60px !important;
		padding: 0 !important;
		background-color: rgba(40, 50, 45, 0.4) !important;
		background-image: 
			linear-gradient(to right, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.5) 80%, transparent 100%),
			linear-gradient(to right, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.5) 80%, transparent 100%),
			linear-gradient(to left, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.5) 80%, transparent 100%),
			linear-gradient(to left, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.5) 80%, transparent 100%) !important;
		background-size: 
			calc(50% - 80px) 1px, 
			calc(50% - 80px) 1px,
			calc(50% - 80px) 1px, 
			calc(50% - 80px) 1px !important;
		background-position: 
			left top, 
			left bottom, 
			right top, 
			right bottom !important;
		background-repeat: no-repeat !important;
		border-bottom: none !important;
		top: 10px !important;
		transition: height 0.3s ease, background-color 0.3s ease !important;
		overflow: hidden !important;
	}
	
	.nc-custom-nav.is-active {
		height: 290px !important; /* Expand to show links */
		background-color: rgba(28, 43, 38, 0.98) !important;
		background-image: none !important;
	}
	
	.nc-custom-nav__container {
		flex-direction: row !important;
		flex-wrap: wrap !important;
		height: 60px !important;
		padding: 0 25px !important;
		align-items: center !important;
		justify-content: space-between !important;
	}
	
	.nc-custom-nav__logo {
		order: 1 !important;
		flex: 0 0 auto !important;
		margin: 0 !important;
		padding: 0 !important;
	}
	
	.nc-custom-nav__logo img {
		height: 45px !important;
	}

	.nc-custom-nav__hamburger {
		display: flex !important;
		flex: 0 0 auto !important;
		flex-direction: column !important;
		justify-content: space-between !important;
		width: 24px !important;
		height: 18px !important;
		background: transparent !important;
		border: none !important;
		cursor: pointer !important;
		padding: 0 !important;
		order: 2 !important;
		outline: none !important;
	}
	
	.nc-custom-nav__hamburger span {
		display: block !important;
		width: 100% !important;
		height: 2px !important;
		background-color: #FFFFFF !important;
		border-radius: 2px !important;
		transition: all 0.3s ease !important;
	}
	
	.nc-custom-nav.is-active .nc-custom-nav__hamburger span:nth-child(1) {
		transform: translateY(8px) rotate(45deg) !important;
	}
	.nc-custom-nav.is-active .nc-custom-nav__hamburger span:nth-child(2) {
		opacity: 0 !important;
	}
	.nc-custom-nav.is-active .nc-custom-nav__hamburger span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg) !important;
	}

	.nc-custom-nav__left,
	.nc-custom-nav__right {
		display: none !important; /* Remove from flex flow entirely until active */
		flex: none !important;
		flex-direction: column !important;
		width: 100% !important;
		order: 3 !important;
		gap: 0 !important;
		margin: 0 !important;
		text-align: center !important;
		opacity: 0 !important;
		transition: opacity 0.3s ease !important;
	}
	
	.nc-custom-nav.is-active .nc-custom-nav__left,
	.nc-custom-nav.is-active .nc-custom-nav__right {
		display: flex !important;
		opacity: 1 !important;
		transition-delay: 0.15s !important;
	}
	
	.nc-custom-nav__left a,
	.nc-custom-nav__right > a {
		font-size: 13px !important;
		letter-spacing: 2.5px !important;
		padding: 12px 0 !important;
		display: block !important;
	}

	/* 3. Responsive Hero Section */
	.nc-hero__heading {
		font-size: clamp(36px, 10vw, 48px) !important;
		padding: 0 15px !important;
	}
	
	.nc-hero__description {
		font-size: 14px !important;
		padding: 0 20px !important;
	}

	.nc-hero__cta-wrapper {
		flex-direction: column !important;
		gap: 15px !important;
		width: 100% !important;
		padding: 0 20px !important;
		box-sizing: border-box !important;
	}
	
	.nc-hero__btn {
		width: 100% !important;
		text-align: center !important;
		box-sizing: border-box !important;
	}

	.nc-hero__scroll {
		bottom: 15px !important;
	}
}

/* =========================================================
   Luxury "Our Team" Section
   ========================================================= */
.nc-team-section {
	width: 100%;
	max-width: 1140px;
	margin: 80px auto;
	padding: 0 20px;
}

.nc-team-header {
	text-align: center;
	margin-bottom: 60px;
}

.nc-team-title {
	font-family: 'Playfair Display', serif;
	font-size: 46px;
	color: #1a2a22; /* Dark Forest Green */
	margin-bottom: 20px;
	font-weight: 600;
}

.nc-team-divider {
	width: 80px;
	height: 3px;
	background-color: #D4AF37; /* Gold */
	margin: 0 auto;
}

.nc-team-grid {
	display: flex;
	gap: 60px;
	justify-content: center;
	flex-wrap: wrap;
}

.nc-team-member {
	flex: 1;
	min-width: 320px;
	max-width: 480px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.nc-team-member__image-wrapper {
	width: 100%;
	aspect-ratio: 4/3; /* Slightly wider for the top of a card */
	margin: 0;
	border-radius: 12px 12px 0 0;
	overflow: hidden;
	position: relative;
}

.nc-team-member__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s ease;
}

.nc-team-member:hover .nc-team-member__image {
	transform: scale(1.05);
}

.nc-team-member__content {
	background-color: #1a2a22; /* Deep forest green */
	padding: 40px 35px;
	border-radius: 0 0 12px 12px;
	position: relative;
	z-index: 2;
	box-shadow: 0 20px 40px rgba(0,0,0,0.15);
	text-align: left;
	flex: 1; /* Stretch to fill height so both cards are equal */
}

.nc-team-member__name {
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	color: #ffffff; /* White for dark bg */
	margin-bottom: 12px;
	font-weight: 600;
}

.nc-team-member__role {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: #D4AF37; /* Gold */
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 25px;
	position: relative;
}

/* Decorative Gold Line between Role and Bio */
.nc-team-member__role::after {
	content: '';
	display: block;
	width: 40px;
	height: 2px;
	background-color: rgba(212, 175, 55, 0.7);
	margin: 20px 0 0 0; /* Left aligned */
}

.nc-team-member__bio {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: #e0e0e0; /* Light grey/white for readability */
	line-height: 1.85;
	text-align: left;
	padding: 0;
}

/* =========================================================
   Luxury SDG Goals Section
   ========================================================= */
.nc-sdg-section {
	padding: 100px 20px;
	position: relative;
	overflow: hidden;
	background-color: #0f1a15; /* Fallback dark background */
}

.nc-sdg-video-bg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	object-fit: cover;
	z-index: 0;
}

.nc-sdg-video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(15, 26, 21, 0.7); /* Dark green overlay to ensure text legibility */
	z-index: 1;
}

.nc-sdg-container {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.nc-sdg-top-divider {
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
	margin-bottom: 60px;
}

.nc-sdg-title {
	font-family: 'Great Vibes', cursive;
	font-size: 64px;
	color: #FDFBF7; /* Changed to Cream/White to stand out against dark video background */
	margin-bottom: 10px; /* Reduced to bring it closer to the gold divider */
	font-weight: 400;
}

.nc-sdg-divider {
	width: 60px;
	height: 3px;
	background-color: #D4AF37;
	margin: 0 auto 60px auto;
}

.nc-sdg-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 25px;
}

.nc-sdg-card {
	background: transparent;
	border: none;
	padding: 0;
	border-radius: 12px;
	text-align: center;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	height: auto;
}

.nc-sdg-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.nc-sdg-image {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
	.nc-sdg-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.nc-sdg-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.nc-sdg-title {
		font-size: 32px;
	}
}

@media (max-width: 480px) {
	.nc-sdg-grid {
		grid-template-columns: 1fr;
	}
}

/* =========================================================
   Coffee Types Section (Card Grid)
   ========================================================= */
/* Coffee Types Heading */
.elementor-element-12e4d367 {
	width: 100% !important;
	display: flex !important;
	justify-content: center !important;
	margin-bottom: 10px !important;
	margin-top: -40px !important; /* Aggressively pull the heading up */
	padding-top: 0 !important;
}

.elementor-element-12e4d367 .elementor-heading-title {
	font-family: 'Great Vibes', cursive !important;
	font-size: 64px !important;
	color: #1a2a22 !important;
	font-weight: 400 !important;
	text-transform: none !important;
	text-align: center;
	margin: 0 !important;
}

/* Force the PARENT section to allow full-width children */
.elementor-element-63085e9d {
	width: 100% !important;
	max-width: 100% !important;
	padding-top: 0 !important;
	margin-top: 0 !important;
}

.elementor-element-63085e9d > .e-con-inner {
	width: 100% !important;
	max-width: 100% !important;
	flex-wrap: wrap !important;
	justify-content: center !important;
}

/* Force the child container (3a6f9790) to span full width instead of half */
.elementor-element-3a6f9790 {
	width: 100% !important;
	max-width: 100% !important;
	flex: 0 0 100% !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	padding-top: 0 !important;
	margin-top: 0 !important;
}

.elementor-element-3a6f9790 > .e-con-inner {
	width: 100% !important;
	max-width: 100% !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
}

/* Force the text widget (704baa62) to take full width - remove Elementor's width-initial restriction */
.elementor-element-704baa62 {
	width: 100% !important;
	max-width: 100% !important;
}

.elementor-element-704baa62 .elementor-widget-container {
	width: 100% !important;
	max-width: 100% !important;
}

.nc-coffee-types-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin: 20px auto 0 auto;
	width: 90%;
	max-width: 1200px;
	padding: 0 40px;
	box-sizing: border-box;
}

.nc-coffee-card {
	background: #FDFBF7; /* Soft Off-white Cream */
	border: 1px solid rgba(212, 175, 55, 0.2);
	border-radius: 12px;
	padding: 40px 30px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.nc-coffee-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
	border-color: rgba(212, 175, 55, 0.6);
}

.nc-coffee-card-icon {
	font-size: 28px;
	color: #D4AF37; /* Gold */
	margin-bottom: 20px;
	background: rgba(212, 175, 55, 0.1);
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nc-coffee-card-title {
	font-family: 'Playfair Display', serif;
	font-size: 28px;
	color: #1a2a22; /* Dark green */
	margin-bottom: 5px;
	font-weight: 700;
}

.nc-coffee-card-subtitle {
	font-family: 'Great Vibes', cursive;
	font-size: 32px;
	color: #D4AF37;
	margin-bottom: 20px;
	font-weight: 400;
}

.nc-coffee-card-desc {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	line-height: 1.7;
	color: #4a5340;
}

/* Ensure the overlapping leaves image sits on top of both Coffee Types and the Video Section */
.elementor-element-65195137,
.elementor-element-5599c313 {
	z-index: 50 !important;
	pointer-events: none; /* Let users click through the leaves */
}

/* Sweet Gold Divider below Coffee Types */
.nc-coffee-divider {
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.8), transparent);
	margin-top: 60px;
	margin-bottom: 0px;
}

/* =========================================================
   Connect With Us Section (Typography Upgrade)
   ========================================================= */
.elementor-element-4e4b4853 .elementor-heading-title {
	font-family: 'Great Vibes', cursive !important;
	font-size: 72px !important;
	color: #1a2a22 !important; /* Dark Green */
	font-weight: 400 !important;
	text-transform: none !important;
	text-align: center;
}

.elementor-element-7fa2c405 .elementor-heading-title,
.elementor-element-7fa2c405 {
	font-family: 'Playfair Display', serif !important;
	font-size: 16px !important;
	color: #D4AF37 !important; /* Luxury Gold */
	font-weight: 600 !important;
	text-transform: uppercase !important;
	letter-spacing: 3px !important;
	text-align: center;
}

/* Mobile responsive */
@media (max-width: 768px) {
	.nc-coffee-types-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}
/* =========================================================
   Coffee Beans Grid (Image Replacement)
   ========================================================= */
.nc-coffee-beans-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 140px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.nc-bean-card {
    text-align: center;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nc-bean-card:hover {
    transform: scale(1.1) translateY(-15px);
}

.nc-bean-card img {
    width: 220px;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.4));
    margin-bottom: 25px;
    transition: filter 0.4s ease;
}

.nc-bean-card:hover img {
    filter: drop-shadow(0 30px 40px rgba(212, 175, 55, 0.4)); /* Gold shadow glow */
}

.nc-bean-card h3 {
    font-family: 'Great Vibes', cursive;
    font-size: 42px;
    color: #1a2a22; /* Dark green */
    margin: 0;
    font-weight: 400;
    line-height: 1;
}
/* =========================================================
   Coffee Detail Pages (Arabica, Robusta, Liberica)
   ========================================================= */
.nc-coffee-detail-page {
    background-color: #f7f7f7;
    color: #1a2a22;
    font-family: 'Inter', sans-serif;
}

/* Hero Section */
.nc-coffee-hero {
    position: relative;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #1a2a22 0%, #2a3a30 100%);
    overflow: hidden;
    text-align: center;
    color: #fff;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nc-coffee-hero-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url('./assets/images/coffeeelement.png');
    background-size: 800px;
    opacity: 0.05;
    animation: rotate 120s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nc-coffee-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.nc-coffee-image-wrapper {
    margin-bottom: 40px;
}

.nc-coffee-hero-image {
    width: 320px;
    height: auto;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.8)); /* Dark, grounding shadow instead of a bright glow */
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.nc-coffee-title {
    font-family: 'Great Vibes', cursive;
    font-size: 96px;
    color: #D4AF37; /* Gold */
    margin: 0 0 10px 0;
    line-height: 1;
    font-weight: 400;
}

.nc-coffee-subtitle {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #e0e0e0;
    margin: 0;
}

/* Info Section */
.nc-coffee-info-section {
    padding: 100px 20px;
    background: #ffffff;
}

.nc-coffee-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.nc-coffee-description h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #1a2a22;
    margin-bottom: 30px;
    position: relative;
}

.nc-coffee-description h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #D4AF37;
}

.nc-coffee-description p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5c51;
    margin-bottom: 25px;
}

/* Specs Grid */
.nc-coffee-specs {
    background: #fdfdfd;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.nc-spec-item {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nc-spec-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.nc-spec-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8AB293;
    margin-bottom: 8px;
    font-weight: 700;
}

.nc-spec-value {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #1a2a22;
}

/* Responsive */
@media (max-width: 992px) {
    .nc-coffee-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .nc-coffee-title { font-size: 72px; }
    .nc-coffee-hero-image { width: 250px; }
}

/* =========================================================
   Custom "Join the Team" Section (Shortcode: [nc_join_team])
   ========================================================= */
.nc-join-team-section {
    display: flex;
    align-items: stretch;
    justify-content: center;
    max-width: 1100px;
    margin: 80px auto;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.nc-join-image-col {
    flex: 0 0 45%;
    width: 45%;
}

.nc-join-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nc-join-form-col {
    flex: 0 0 55%;
    width: 55%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nc-join-title {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.nc-join-subtitle {
    color: #8AB293;
    margin-bottom: 30px;
    font-size: 16px;
}

.nc-join-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nc-join-form input {
    width: 100%;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.nc-join-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.nc-join-form input:focus {
    border-color: #D4AF37;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.nc-join-btn {
    margin-top: 10px;
    background-color: #D4AF37;
    color: #1a2a22;
    border: none;
    padding: 16px 30px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nc-join-btn:hover {
    background-color: #C19A2B;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.nc-join-footer-text {
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 400;
}

@media (max-width: 992px) {
    .nc-join-team-section {
        flex-direction: column;
        max-width: 600px;
        margin: 40px auto;
    }
    .nc-join-image-col, .nc-join-form-col {
        width: 100%;
        flex: none;
    }
    .nc-join-image-col {
        height: 300px;
    }
    .nc-join-form-col {
        padding: 40px;
    }
}

/* =========================================================
   Creative "Our Story" Section (Shortcode: [nc_our_story])
   ========================================================= */
.nc-story-creative-section {
    width: 100%;
    margin: 80px 0;
    padding: 80px 20px;
    background: linear-gradient(135deg, #FDFCF9 0%, #F4EFE6 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
}

.nc-story-creative-container {
    max-width: 1100px;
    margin: 0 auto;
}

.nc-story-creative-header {
    text-align: center;
    margin-bottom: 70px;
}

.nc-story-creative-header h2 {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    color: #1a2a22;
    margin-bottom: 15px;
}

.nc-story-creative-header p {
    font-size: 16px;
    color: #8AB293;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nc-story-creative-grid {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    position: relative;
}

/* Elegant horizontal connecting line */
.nc-story-creative-grid::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    z-index: 0;
}

.nc-story-card {
    background: transparent;
    padding: 0 10px;
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.nc-story-icon {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    color: #D4AF37; /* Gold text */
    background: #1a2a22; /* Dark forest green circle */
    border: 2px solid #D4AF37;
    width: 70px;
    height: 70px;
    line-height: 66px; /* Adjust for border */
    border-radius: 50%;
    margin: 0 auto 30px auto;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(26, 42, 34, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nc-story-card:hover .nc-story-icon {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.nc-story-card h3 {
    color: #1a2a22;
    font-size: 26px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.nc-story-card p {
    color: #5a4a42; /* Warm dark brown/grey */
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 992px) {
    .nc-story-creative-grid {
        flex-direction: column;
        gap: 50px;
    }
    .nc-story-creative-grid::before {
        display: none;
    }
    .nc-story-creative-header h2 {
        font-size: 36px;
    }
}

/* =========================================================
   Gallery Section
   ========================================================= */
.page-id-1292 .page-header {
    display: none !important;
}

.nc-gallery-hero {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    text-align: center;
    padding: 180px 20px 140px 20px;
    background: linear-gradient(rgba(12, 57, 50, 0.7), rgba(0, 0, 0, 0.9)), url('../../uploads/2024/08/Fikkal-Tea-and-Coffee-March-2024-12-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-bottom: 2px solid #D4AF37;
    margin-bottom: -50px; /* Overlap the masonry slightly */
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.nc-gallery-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.nc-gallery-hero h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 80px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 5px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    position: relative;
    z-index: 2;
}

.nc-gallery-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.nc-gallery-section {
    max-width: 1200px;
    margin: 100px auto 80px auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.nc-gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    grid-auto-flow: dense;
    gap: 20px;
    padding: 20px 0;
}

.nc-gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    cursor: pointer;
    background: #FAFAFA;
}

/* Beautiful hover effects */
.nc-gallery-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(26, 42, 34, 0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.nc-gallery-item:hover::after {
    opacity: 1;
}

.nc-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nc-gallery-item:hover img {
    transform: scale(1.08);
}

/* Flawless Asymmetric Bento Grid Pattern */
.nc-gallery-item:nth-child(8n + 1) {
    grid-column: span 2;
    grid-row: span 2;
}
.nc-gallery-item:nth-child(8n + 2),
.nc-gallery-item:nth-child(8n + 3) {
    grid-column: span 1;
    grid-row: span 1;
}
.nc-gallery-item:nth-child(8n + 4) {
    grid-column: span 2;
    grid-row: span 1;
}
.nc-gallery-item:nth-child(8n + 5) {
    grid-column: span 1;
    grid-row: span 2;
}
.nc-gallery-item:nth-child(8n + 6) {
    grid-column: span 2;
    grid-row: span 2;
}
.nc-gallery-item:nth-child(8n + 7),
.nc-gallery-item:nth-child(8n + 8) {
    grid-column: span 1;
    grid-row: span 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .nc-gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 250px;
    }
    
    .nc-gallery-item:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    /* Simplified pattern for tablet */
    .nc-gallery-item:nth-child(5n + 1) {
        grid-column: span 2;
        grid-row: span 2;
    }
    .nc-gallery-item:nth-child(5n + 4) {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .nc-gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    
    .nc-gallery-item:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    /* Simplified pattern for mobile */
    .nc-gallery-item:nth-child(3n + 1) {
        grid-column: span 2;
        grid-row: span 2;
    }
}

/* =========================================================
   Custom Footer Background Override
   ========================================================= */
footer.elementor-location-footer .elementor-element-1a681db {
    background-image: url('../../uploads/nc_gallery/Jitpur-111.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
}

/* Adding a dark green overlay so footer text remains readable */
footer.elementor-location-footer .elementor-element-1a681db::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 30, 15, 0.85); /* Deep dark green tint */
    z-index: 0;
}

footer.elementor-location-footer .elementor-element-1a681db > * {
    position: relative;
    z-index: 1;
}

/* =========================================================
   About Us Page - Missing Images Fixes
   ========================================================= */

/* Mission Section Background (Full width parallax section) */
.elementor-element-6bb66a0 {
    background-image: url('../../uploads/nc_gallery/Jitpur-107.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
}

/* Vision Section Background (Full width parallax section) */
.elementor-element-6130753 {
    background-image: url('../../uploads/nc_gallery/Jitpur-108.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
}

/* Fix broken Image Widgets using CSS content replacement so layout stays intact */

/* Community Card Image */
.elementor-element-5d37fb5 img {
    content: url('../../uploads/nc_gallery/Jitpur-111.jpg') !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
}

/* Certifications Card Image */
.elementor-element-2edb41a img {
    content: url('../../uploads/nc_gallery/Jitpur-113.jpg') !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
}

/* Our Expertise Side Image */
.elementor-element-12c4bad img {
    content: url('../../uploads/nc_gallery/Jitpur-102.jpg') !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
}

/* Hide broken decorative leaf images */
.elementor-element-74c7a4c img,
.elementor-element-c7e778b img,
.elementor-element-0141bbe img {
    display: none !important;
}

/* =========================================================
   Team Page - Missing Images Fixes
   ========================================================= */

/* Hero Section Image 1 */
.elementor-element-32e19f8 img {
    content: url('../../uploads/nc_gallery/Jitpur-115.jpg') !important;
    width: 100% !important;
    height: 400px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.4) !important;
}

/* Hero Section Image 2 */
.elementor-element-6f029ff img {
    content: url('../../uploads/nc_gallery/Jitpur-120.jpg') !important;
    width: 100% !important;
    height: 400px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.4) !important;
}

/* 
=========================================================
   Our Journey Redesign (Hero + Zig-Zag)
   ========================================================= */

/* Hide duplicate default page header on Journey page */
.page-id-1296 .page-header {
    display: none !important;
}

/* Hero Banner */
.nc-journey-hero {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../../uploads/nc_gallery/Jitpur-61.jpg');
    background-size: cover;
    background-position: center;
    padding: 180px 20px 120px;
    text-align: center;
    color: #fff;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 1;
}

.nc-journey-hero h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #fff;
}

.nc-journey-hero p {
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f1ecd8;
    max-width: 800px;
    margin: 0 auto;
}

/* Museum Archway Section */
.nc-archway-journey {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background-color: #fdfbf7;
    padding: 150px 20px;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    position: relative;
}

.nc-archway-journey::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(#d4af37 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.15;
    z-index: 0;
}

.nc-archway-step {
    max-width: 1100px;
    margin: 0 auto 180px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.nc-archway-step:last-child {
    margin-bottom: 0;
}

.nc-arch-image-wrapper {
    flex: 1;
    position: relative;
    text-align: center;
}

.nc-arch-img {
    width: 85%;
    max-width: 450px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 200px 200px 0 0;
    box-shadow: 0 30px 60px rgba(44, 54, 49, 0.15);
    position: relative;
    z-index: 2;
    transition: transform 0.6s ease;
}

.nc-arch-img:hover {
    transform: translateY(-10px);
}

.nc-arch-number {
    position: absolute;
    top: -40px;
    right: -40px;
    font-size: 16rem;
    font-family: 'Playfair Display', serif;
    color: rgba(212, 175, 55, 0.4); /* Transparent Gold */
    mix-blend-mode: multiply; /* Blends perfectly into the image and background */
    z-index: 3;
    line-height: 1;
    font-weight: 400;
    pointer-events: none;
}

.nc-archway-step.nc-arch-reverse .nc-arch-number {
    right: auto;
    left: -20px;
}

.nc-arch-content {
    flex: 1;
    padding: 40px;
}

.nc-arch-subtitle {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #a89467;
    margin-bottom: 20px;
    font-weight: 600;
}

.nc-arch-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: #1a2421;
    margin-bottom: 25px;
    line-height: 1.2;
}

.nc-arch-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
}

/* Mobile Archway */
@media (max-width: 900px) {
    .nc-archway-step {
        flex-direction: column !important;
        gap: 50px;
        margin-bottom: 100px;
    }
    .nc-arch-content {
        padding: 0;
        text-align: center;
    }
    .nc-arch-img {
        width: 100%;
    }
    .nc-arch-number {
        font-size: 10rem;
    }
}

    .nc-parallax-card h3 {
        font-size: 2.2rem;
    }
    .nc-parallax-number {
        font-size: 4rem;
        margin-bottom: -15px;
    }
}
