/* ===============================
   SIDE MENU
================================ */

.header_wrapper.inner-header {
    z-index: 2 !important;
}

#side-menu .menu_list img {
    margin-bottom: -10px;
}

#side-menu .et_pb_column .et_pb_module {
    margin-bottom: 0;
}


.video-like-animation {
	position: relative;
	width: 600px;
	height: 400px;
	margin: auto;
	overflow: hidden;
}

.footer-small-img {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.top-big-footer {
	padding: 0;
}

#about {
    display: none;
}


/* ===============================
   FOOTER WRAPPER
================================ */
.radial-footer-wrap {
	position: relative;
	height: 300px;
	/* thoda bada visible area */
	overflow: hidden;
	margin-top: 0;
}

/* ===============================
   FULL CIRCLE HOLDER
================================ */
.radial-spinner {
	position: absolute;
	width: 500px;
	/* pehle 520px */
	height: 500px;
	/* perfect circle */
	left: 50%;
	bottom: -250px;
	/* exact half cut */
	transform: translateX(-50%);
}

/* ===============================
   ARROW
================================ */
.spinner-arrow-img img {
	position: absolute;
	top: 18px;
	width: 48px;
	/* thoda chota */
	height: 48px;
}

.arc-menu-container {
	position: relative;
	width: 100%;
	height: 260px;
	margin: 50px auto 0;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	overflow: hidden;
}

.nav-item {
	position: absolute;
	top: 35px;
	left: 50%;
	width: 111px;
	margin-left: -58px;
	height: 268px;
	transform-origin: bottom center;
	transform: rotate(var(--angle));
	cursor: pointer;
	z-index: 10;
}

.arc-nav {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	transform-origin: 50% 291px;
	transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
	will-change: transform;
	cursor: grab;
	user-select: none;
	z-index: 10;
}

.arc-nav:active {
	cursor: grabbing;
}

.menu-box {
	padding: 14px 10px;
	background: rgba(255, 255, 255, 0.08);
	border: 1.5px solid rgba(255, 255, 255, 0.3);
	border-radius: 20px;
	color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	transition: 0.3s;
	clip-path: polygon(5% 0%, 95% 0%, 85% 100%, 15% 100%);
	cursor: pointer;
	/* Keep pointer for links */
}

/* ===============================
   OUTER GOLD RING
================================ */
.gold-ring {
	position: absolute;
	inset: 0;
	border: 8px solid #A68F7A;
	/* thin ring */
	border-radius: 50%;
	box-sizing: border-box;
	z-index: 1;
}

/* ===============================
   GREEN BASE CIRCLE
================================ */
.spinner-wheel {
	position: absolute;
	inset: 8px;
	background: #4c5f4b;
	border-radius: 50%;
	transition: transform 0.8s ease;
	z-index: 2;
}

/* ===============================
   CENTER LOGO
================================ */
.center-logo {
	position: absolute;
	width: 85px;
	height: 85px;
	left: 50%;
	top: 42%;
	transform: translate(-50%, -50%);
	z-index: 5;
	pointer-events: none;
}

/* ===============================
   MENU CARDS
================================ */
.spin-item {
	position: absolute;
	width: 105px;
	/* chota card */
	height: 75px;
	background: #55694f;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.6);
	color: #fff;
	font-size: 13px;
	text-decoration: none;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	transition: transform 0.35s ease;
	transform-origin: center;
	z-index: 3;
}

.spin-item.active {
	background: #5f735e;
}

/* ===============================
   ICON
================================ */
.spin-item .icon img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

/* ===============================
   LABEL
================================ */
.spin-item .label {
	margin-top: 4px;
	font-size: 13px;
	white-space: nowrap;
}

/* ===============================
   CARD POSITIONS (Re-Adjusted for 500px Circle)
================================ */
.spin-item:nth-child(1) {
	top: 22px;
	left: 195px;
}

.spin-item:nth-child(2) {
	top: 85px;
	left: 85px;
	transform: rotate(-35deg);
}

.spin-item:nth-child(3) {
	top: 165px;
	left: 40px;
	transform: rotate(-70deg);
}

.spin-item:nth-child(4) {
	top: 165px;
	left: 355px;
	transform: rotate(70deg);
}

.spin-item:nth-child(5) {
	top: 85px;
	left: 330px;
	transform: rotate(35deg);
}

/* ===============================
   HOVER
================================ */
.spin-item:hover {
	transform: scale(1.25);
	background: #667c60;
	z-index: 5;
}


/* PAGE LEVEL PROTECTION */
html,
body {
	overflow-x: hidden;
}

/* SECOND SECTION MUST CLIP ANIMATION */
.anchoring-second-section {
	position: relative;
	overflow: hidden;
	/* 🔥 MOST IMPORTANT */
}

/* IMAGE WRAPPER SAFETY */
.zoming_image {
	position: relative;
	z-index: 5;
	will-change: transform;
}

/* DURING ANIMATION LOCK */
body.animating {
	overflow: hidden;
}

/* BLACK HOLE */
.black-hole {
	position: absolute;
	width: 80px;
	height: 80px;
	background: radial-gradient(circle, #000 30%, #111 60%, transparent 70%);
	border-radius: 50%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 5;
}

/* IMAGE ANIMATION */
.zoom-to-hole {
	animation: zoomIntoHole 1.2s ease-in forwards;
	z-index: 10;
	position: relative;
}

@keyframes zoomIntoHole {
	0% {
		transform: scale(1) rotate(0deg);
		opacity: 1;
	}

	70% {
		transform: scale(4) rotate(120deg);
		opacity: 0.8;
	}

	100% {
		transform: scale(0) rotate(180deg);
		opacity: 0;
	}
}

/* THIRD LOGO */
.third-logo {
	opacity: 0;
	transform: scale(0);
}

.logo-reveal {
	animation: logoFromCenter 1s ease-out forwards;
}

@keyframes logoFromCenter {
	0% {
		opacity: 0;
		transform: scale(0);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}


/* Hide all sections by default */
.anov-guides-sec,
.anov-ideas-sec,
.anov-partners-sec {
	display: none;
}

/* Show first section initially */
.anov-guides-sec {
	display: block;
}

/* Optional: active tab style */


:root {
	--arc-bg: #3d4e41;
	--arc-accent: #a48e77;
	--size-px: 600px;
	/* Base Desktop Width */
}

body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	/* Side scroll rokne ke liye */
	background: #f0f0f0;
}

/* Container ko responsive banane ke liye update */


/* Desktop View (Standard) */
.navigation-wrapper {
	position: absolute;
	top: 0;
	width: var(--size-px);
	height: var(--size-px);
	transition: transform 0.3s ease;
}

.main-arc {
	position: relative;
	width: 100%;
	height: 100%;
	background: var(--arc-bg);
	border-radius: 50%;
	border: 15px solid var(--arc-accent);
	box-sizing: border-box;
}

/* Center Logo Area */
.logo-area {
	position: absolute;
	bottom: 70%;
	left: 50%;
	transform: translate(-50%, 70%);
	text-align: center;
	z-index: 5;
}

.menu-box:hover {
	transform: translateY(-10px);
}

.main-logo {
	width: 90px;
	filter: brightness(1.6);
}

/* Hanging Arrow Indicator */
.indicator-wrapper {
	position: absolute;
	top: -20px;
	left: 50%;
	width: 44px;
	height: 20px;
	transform: translateX(-50%) rotate(0deg) !important;
	transform-origin: center 300px;
	/* Aligned with 600px circle center */
	transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
	z-index: 20;
	cursor: grab;
}

.arrow-top-bar {
	width: 100%;
	height: 14px;
	background: var(--arc-accent);
	border-radius: 10px 10px 0 0;
}

.arrow-triangle {
	width: 0;
	height: 0;
	border-left: 22px solid transparent;
	border-right: 22px solid transparent;
	border-top: 50px solid var(--arc-accent);
	margin-top: -2px;
}

.nav-item {
	position: absolute;
	top: 21px;
	left: 50%;
	width: 118px;
	margin-left: -59px;
	height: 266px;
	transform-origin: bottom center;
	transform: rotate(var(--angle));
	cursor: pointer;
	z-index: 10;
}


.nav-item.active .menu-box {
	background: rgba(255, 255, 255, 0.2);
	border-color: #fff;
	box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.nav-item i {
	font-size: 30px;
}

.nav-item span {
	font-size: 15px;
	font-weight: 500;
	font-family: serif;
}

/* ================= MOBILE & TABLET FIX ================= */
.menu-box img {
	max-width: 25px;
}


.notepad-window {
	width: 100%;
	background: #c0c0c0;
	border: 2px solid #000;
	font-family: "MS Sans Serif", Arial, sans-serif;
	box-shadow: 4px 4px 0 #cfcfcf;
}


/* Window buttons */
.window-buttons span {
	display: inline-block;
	width: 12px;
	height: 12px;
	margin-left: 4px;
	background: #c0c0c0;
	border: 1px solid #000;
}

/* Menu bar */
.notepad-menu {
	background: #c0c0c0;
	padding: 4px 6px;
	font-size: 12px;
	border-bottom: 2px solid #808080;
}

/* Body */
.notepad-body {
	background: #ffffff;
	padding: 8px;
	height: 190px;
	font-family: 'Ofelia Regular', Helvetica, Arial, Lucida, sans-serif;
	font-size: 13px;
	color: #000;
	border-top: 2px solid #fff;
}

/* Display text */
#display-text {
	margin-bottom: 8px;
}

/* Comments */
.truth-comment {
	margin-bottom: 4px;
}

.anchoring-enter-btn h4.et_pb_module_heading {
	text-decoration: none !important;
	box-sizing: border-box !important;
	border-radius: 2px !important;
	border: none !important;
	outline: 7px solid #b9a38f !important;
	background: linear-gradient(180deg, #B9A38F 0%, #A68F7A 100%) !important;
	letter-spacing: 2px !important;
	cursor: pointer;
	padding: 17px 22px;
	color: #465846 !important;
	text-transform: uppercase;
}

.anchoring-enter-btn {
	transition: opacity 0.6s ease;
}

/* Tablet view */
@media (max-width: 850px) {
	.navigation-wrapper {
		transform: scale(0.8);
		/* Menu ko 80% chhota karega */
		transform-origin: top center;
	}

	.arc-menu-container {
		height: 210px;
	}
}

@media (max-width: 767px) {
	.notepad-window {
		width: 100%;
	}

	.anchoring-enter-btn h4.et_pb_module_heading {
		padding: 12px 15px;
		font-size: 16px !important;
	}
}

/* Mobile View (No side touch) */
@media (max-width: 600px) {
	.navigation-wrapper {
		transform: scale(0.55);
		/* Phone screen ke hisaab se scale */
		transform-origin: top center;
	}

	.arc-menu-container {
		height: 152px;
		margin-top: 20px;
	}
}

/* Very Small Phones */
@media (max-width: 400px) {
	.navigation-wrapper {
		transform: scale(0.45);
	}

	.arc-menu-container {
		height: 123px;
	}
}

/* Page fade-in from white */
#anov-page-fade-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 99990; /* Below header/footer but above content */
    pointer-events: none;
    transition: opacity 1.2s ease-in-out;
}

body.content-ready #anov-page-fade-overlay {
    opacity: 0;
}

.header_wrapper {
    z-index: 99999 !important;
}

.footer_wrapper {
    position: relative;
    z-index: 99999 !important;
}

.arc-menu-container {
    z-index: 99999 !important;
}

@media (max-width: 980px) {
/*     .arc-menu-container,
    .footer_wrapper {
        display: none !important;
    } */
	
	footer.et-l.et-l--footer {
		display: none !important;
	}
	.top-big-footer {
		display: none !important;
	}
}

/* Hide the zoom animation section as requested */
.image-animaton-main-secton {
    display: none !important;
}