
	:root {
  --saffron:      #0092dd;   /* Primary accent – logo blue  */
  --saffron-lt:   #33acee;   /* Lighter blue                */
  --saffron-dk:   #006fb0;   /* Darker blue                 */
  --teal:         #28166c;   /* Dark navy-purple – logo dark */
  --teal-lt:      #3d248f;   /* Lighter purple               */
  --teal-xlt:     #eeeaf8;   /* Very light purple tint       */
  --cream:        #f4f5fb;   /* Page background              */
  --dark:         #14103a;   /* Near-black with purple base  */
  --mid:          #4a4870;   /* Body text / mid tone         */
  --light-text:   #8a88aa;   /* Muted labels                 */
  --white:        #ffffff;
  --card-radius:  16px;
  --section-gap:  40px;
  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
}

		/* ===== RESET ===== */
		*,
		*::before,
		*::after {
			box-sizing: border-box;
			margin: 0;
			padding: 0;
		}

		html {
			scroll-behavior: smooth;
		}

		body {
			font-family: var(--font-body);
			background: var(--cream);
			color: var(--dark);
			overflow-x: hidden;
		}

		h1,
		h2,
		h3,
		h4,
		h5,
		h6 {
			font-family: var(--font-head);
		}

		img {
			display: block;
			max-width: 100%;
		}

		a {
			text-decoration: none;
		}

		/* ===== UTILITY ===== */
		.arun_example-section-label {
			display: inline-block;
			font-family: var(--font-body);
			font-size: 0.72rem;
			font-weight: 700;
			letter-spacing: 0.22em;
			text-transform: uppercase;
			color: var(--saffron);
			margin-bottom: 10px;
		}

		.arun_example-section-heading {
			font-size: clamp(1.9rem, 3.8vw, 2.9rem);
			font-weight: 900;
			line-height: 1.12;
			color: var(--dark);
			margin-bottom: 14px;
		}

		.arun_example-section-sub {
			font-size: 0.95rem;
			color: var(--mid);
			line-height: 1.7;
			max-width: 500px;
		}

		/* Primary button */
		.arun_example-btn {
			display: inline-flex;
			align-items: center;
			gap: 8px;
			font-family: var(--font-body);
			font-weight: 600;
			font-size: 0.9rem;
			padding: 13px 18px;
			border: none;
			border-radius: 50px;
			cursor: pointer;
			transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
		}

		.arun_example-btn-fill {
			background: var(--saffron);
			color: var(--white);
			box-shadow: 0 4px 18px rgba(232, 115, 42, 0.28);
		}

		.arun_example-btn-fill:hover {
			background: var(--saffron-dk);
			color: var(--white);
			transform: translateY(-2px);
			box-shadow: 0 8px 28px rgba(232, 115, 42, 0.42);
		}

		.arun_example-btn-ghost {
			background: transparent;
			color: var(--white);
			border: 2px solid rgba(255, 255, 255, 0.55);
		}

		.arun_example-btn-ghost:hover {
			background: rgba(255, 255, 255, 0.12);
			border-color: var(--white);
			color: var(--white);
		}

		.arun_example-btn-teal-outline {
			background: transparent;
			color: var(--teal);
			border: 2px solid var(--teal);
		}

		.arun_example-btn-teal-outline:hover {
			background: var(--teal);
			color: var(--white);
		}

		/* Reveal animation */
		.arun_example-reveal {
			opacity: 0;
			transform: translateY(28px);
			transition: opacity 0.6s ease, transform 0.6s ease;
		}

		.arun_example-reveal.visible {
			opacity: 1;
			transform: translateY(0);
		}

		.arun_example-reveal.d1 {
			transition-delay: 0.1s;
		}

		.arun_example-reveal.d2 {
			transition-delay: 0.2s;
		}

		.arun_example-reveal.d3 {
			transition-delay: 0.3s;
		}

		.arun_example-reveal.d4 {
			transition-delay: 0.4s;
		}

		/* ===== HERO ===== */
		.arun_example-hero {
			position: relative;
			min-height: 100vh;
			display: flex;
			align-items: center;
			overflow: hidden;
		}

		.arun_example-hero-bg {
			position: absolute;
			inset: 0;
			background:
				linear-gradient(140deg, rgba(26, 74, 90, 0.90) 0%, rgba(17, 24, 32, 0.55) 55%, rgba(232, 115, 42, 0.28) 100%),
				url('../img/arun_bg.jpg') center / cover no-repeat;
			animation: heroZoom 20s ease-in-out infinite alternate;
			will-change: transform;
		}

		@keyframes heroZoom {
			from {
				transform: scale(1);
			}

			to {
				transform: scale(1.07);
			}
		}

		.arun_example-hero-inner {
			position: relative;
			z-index: 2;
			padding-top: 90px;
			padding-bottom: 60px;
		}

		.arun_example-hero-badge {
			display: inline-flex;
			align-items: center;
			gap: 8px;
			background: rgba(232, 115, 42, 0.18);
			border: 1px solid rgba(232, 115, 42, 0.45);
			color: var(--saffron-lt);
			font-size: 0.75rem;
			font-weight: 600;
			letter-spacing: 0.15em;
			text-transform: uppercase;
			padding: 6px 16px;
			border-radius: 50px;
			margin-bottom: 22px;
			animation: heroFadeIn 0.8s ease both;
		}

		.arun_example-hero-badge .pulse-dot {
			width: 7px;
			height: 7px;
			background: var(--saffron);
			border-radius: 50%;
			animation: pulseDot 1.8s ease-in-out infinite;
		}

		@keyframes pulseDot {

			0%,
			100% {
				opacity: 1;
				transform: scale(1);
			}

			50% {
				opacity: 0.4;
				transform: scale(0.65);
			}
		}

		.arun_example-hero h1 {
			font-size: clamp(2.6rem, 6vw, 3rem);
			font-weight: 900;
			line-height: 1.07;
			color: var(--white);
			margin-bottom: 22px;
			animation: heroFadeIn 0.95s 0.15s ease both;
		}

		.arun_example-hero h1 em {
			font-style: italic;
			color: var(--saffron-lt);
		}

		.arun_example-hero-desc {
			font-size: 1.05rem;
			font-weight: 300;
			line-height: 1.75;
			color: rgba(255, 255, 255, 0.75);
			max-width: 530px;
			margin-bottom: 36px;
			animation: heroFadeIn 1s 0.3s ease both;
		}

		.arun_example-hero-actions {
			display: flex;
			flex-wrap: wrap;
			gap: 14px;
			margin-bottom: 56px;
			animation: heroFadeIn 1s 0.45s ease both;
		}

		.arun_example-hero-stats {
			display: flex;
			flex-wrap: wrap;
			gap: 40px;
			animation: heroFadeIn 1s 0.6s ease both;
		}

		.arun_example-hero-stat {
			color: var(--white);
		}

		.arun_example-hero-stat .num {
			font-family: var(--font-head);
			font-size: 2.4rem;
			font-weight: 700;
			line-height: 1;
			color: var(--white);
		}

		.arun_example-hero-stat .num sup {
			color: var(--saffron-lt);
			font-size: 1.3rem;
		}

		.arun_example-hero-stat .label {
			font-size: 0.78rem;
			color: rgba(255, 255, 255, 0.55);
			letter-spacing: 0.06em;
			margin-top: 5px;
		}

		/* Hero floating card */
		.arun_example-hero-card {
			position: absolute;
			right: 6%;
			bottom: 14%;
			background: rgba(255, 255, 255, 0.1);
			backdrop-filter: blur(22px);
			-webkit-backdrop-filter: blur(22px);
			border: 1px solid rgba(255, 255, 255, 0.2);
			border-radius: 18px;
			padding: 22px 26px;
			color: var(--white);
			min-width: 230px;
			z-index: 3;
			animation: heroFadeIn 1s 0.7s ease both, floatCard 6s ease-in-out 1.7s infinite;
		}

		@keyframes floatCard {

			0%,
			100% {
				transform: translateY(0);
			}

			50% {
				transform: translateY(-10px);
			}
		}

		.arun_example-hero-card .fc-label {
			font-size: 0.7rem;
			letter-spacing: 0.12em;
			text-transform: uppercase;
			color: rgba(255, 255, 255, 0.5);
			margin-bottom: 5px;
		}

		.arun_example-hero-card .fc-title {
			font-family: var(--font-head);
			font-size: 1.1rem;
			font-weight: 700;
		}

		.arun_example-hero-card .fc-sub {
			font-size: 0.8rem;
			color: var(--saffron-lt);
			margin-top: 2px;
		}

		.arun_example-hero-card .fc-divider {
			height: 1px;
			background: rgba(255, 255, 255, 0.15);
			margin: 12px 0;
		}

		.arun_example-hero-card .fc-phone {
			display: flex;
			align-items: center;
			gap: 10px;
			font-size: 0.88rem;
		}

		.arun_example-hero-card .fc-phone i {
			color: var(--saffron);
			font-size: 1rem;
		}

		.arun_example-hero-card .fc-num {
			font-weight: 600;
			font-size: 0.97rem;
		}

		.arun_example-hero-card .fc-alt {
			font-size: 0.75rem;
			color: rgba(255, 255, 255, 0.45);
		}

		/* Scroll cue */
		.arun_example-scroll-cue {
			position: absolute;
			bottom: 30px;
			left: 50%;
			transform: translateX(-50%);
			display: flex;
			flex-direction: column;
			align-items: center;
			gap: 7px;
			color: rgba(255, 255, 255, 0.45);
			font-size: 0.68rem;
			letter-spacing: 0.12em;
			text-transform: uppercase;
			z-index: 3;
			animation: heroFadeIn 1.2s 0.9s ease both;
		}

		.arun_example-scroll-cue .scroll-line {
			width: 1px;
			height: 44px;
			background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
			animation: scrollLine 1.8s ease-in-out infinite;
		}

		@keyframes scrollLine {
			0% {
				transform: scaleY(0);
				transform-origin: top;
			}

			50% {
				transform: scaleY(1);
				transform-origin: top;
			}

			51% {
				transform: scaleY(1);
				transform-origin: bottom;
			}

			100% {
				transform: scaleY(0);
				transform-origin: bottom;
			}
		}

		@keyframes heroFadeIn {
			from {
				opacity: 0;
				transform: translateY(18px);
			}

			to {
				opacity: 1;
				transform: translateY(0);
			}
		}

		@media (max-width: 767px) {
			.arun_example-hero-card {
				display: none;
			}

			.arun_example-hero-stats {
				gap: 22px;
			}

					
		}

		/* ===== BOOKING BAR ===== */
		.arun_example-booking-bar {
			background: var(--white);
			border-radius: var(--card-radius);
			box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
			padding: 30px 34px;
			margin-top: -52px;
			position: relative;
			z-index: 10;
		}

		.arun_example-booking-bar .form-label {
			font-size: 0.7rem;
			font-weight: 700;
			letter-spacing: 0.12em;
			text-transform: uppercase;
			color: var(--light-text);
			margin-bottom: 6px;
		}

		.arun_example-booking-bar .form-control,
		.arun_example-booking-bar .form-select {
			border: 1.5px solid #E2E8F0;
			border-radius: 10px;
			padding: 11px 14px;
			font-family: var(--font-body);
			font-size: 0.9rem;
			color: var(--dark);
			transition: border-color 0.2s, box-shadow 0.2s;
		}

		.arun_example-booking-bar .form-control:focus,
		.arun_example-booking-bar .form-select:focus {
			border-color: var(--saffron);
			box-shadow: 0 0 0 3px rgba(232, 115, 42, 0.12);
			outline: none;
		}

		/* ===== WHY CHOOSE ===== */
		.arun_example-why {
			padding: var(--section-gap) 0;
			background: var(--cream);
		}

		.arun_example-why-card {
			background: var(--white);
			border-radius: var(--card-radius);
			padding: 32px 26px;
			height: 100%;
			border: 1px solid #ECF0F5;
			position: relative;
			overflow: hidden;
			transition: transform 0.3s, box-shadow 0.3s;
		}

		.arun_example-why-card::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			width: 4px;
			height: 100%;
			background: var(--saffron);
			border-radius: 4px 0 0 4px;
			transform: scaleY(0);
			transform-origin: bottom;
			transition: transform 0.35s ease;
		}

		.arun_example-why-card:hover {
			transform: translateY(-7px);
			box-shadow: 0 22px 55px rgba(0, 0, 0, 0.09);
		}

		.arun_example-why-card:hover::before {
			transform: scaleY(1);
		}

		.arun_example-why-icon {
			width: 58px;
			height: 58px;
			border-radius: 14px;
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 1.5rem;
			margin-bottom: 20px;
		}

		.arun_example-why-icon.c1 {
			background: rgba(232, 115, 42, 0.1);
			color: var(--saffron);
		}

		.arun_example-why-icon.c2 {
			background: rgba(26, 74, 90, 0.1);
			color: var(--teal);
		}

		.arun_example-why-icon.c3 {
			background: rgba(72, 187, 120, 0.1);
			color: #3A8A60;
		}

		.arun_example-why-icon.c4 {
			background: rgba(126, 87, 194, 0.1);
			color: #7657C2;
		}

		.arun_example-why-card h5 {
			font-size: 1.08rem;
			font-weight: 700;
			margin-bottom: 9px;
			color: var(--dark);
		}

		.arun_example-why-card p {
			font-size: 0.87rem;
			line-height: 1.68;
			color: var(--mid);
			margin: 0;
		}

		/* ===== PACKAGES ===== */
		.arun_example-packages {
			padding: var(--section-gap) 0;
			background: var(--teal);
			position: relative;
			overflow: hidden;
		}

		.arun_example-packages::before {
			content: '';
			position: absolute;
			top: -100px;
			right: -100px;
			width: 500px;
			height: 500px;
			border-radius: 50%;
			background: rgba(232, 115, 42, 0.07);
			pointer-events: none;
		}

		.arun_example-packages .arun_example-section-label {
			color: var(--saffron-lt);
		}

		.arun_example-packages .arun_example-section-heading {
			color: var(--white);
		}

		.arun_example-pkg-card {
			border-radius: var(--card-radius);
			overflow: hidden;
			position: relative;
			height: 390px;
			transition: transform 0.35s, box-shadow 0.35s;
			display: block;
		}

		.arun_example-pkg-card:hover {
			transform: translateY(-8px);
			box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
		}

		.arun_example-pkg-card img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			transition: transform 0.55s ease;
		}

		.arun_example-pkg-card:hover img {
			transform: scale(1.07);
		}

		.arun_example-pkg-overlay {
			position: absolute;
			inset: 0;
			background: linear-gradient(to top, rgba(17, 24, 32, 0.93) 0%, rgba(17, 24, 32, 0.1) 55%, transparent 100%);
			display: flex;
			flex-direction: column;
			justify-content: flex-end;
			padding: 28px;
		}

		.arun_example-pkg-badge {
			display: inline-block;
			background: var(--saffron);
			color: var(--white);
			font-size: 0.68rem;
			font-weight: 700;
			letter-spacing: 0.12em;
			text-transform: uppercase;
			padding: 4px 12px;
			border-radius: 50px;
			margin-bottom: 10px;
			width: fit-content;
		}

		.arun_example-pkg-card h3 {
			color: var(--white);
			font-size: 1.35rem;
			font-weight: 700;
			margin-bottom: 7px;
		}

		.arun_example-pkg-card p {
			color: rgba(255, 255, 255, 0.65);
			font-size: 0.83rem;
			line-height: 1.55;
			margin-bottom: 16px;
		}

		.arun_example-pkg-actions {
			display: flex;
			gap: 10px;
			opacity: 0;
			transform: translateY(10px);
			transition: opacity 0.3s, transform 0.3s;
		}

		.arun_example-pkg-card:hover .arun_example-pkg-actions,
		.arun_example-pkg-card:focus-within .arun_example-pkg-actions {
			opacity: 1;
			transform: translateY(0);
		}

		@media (max-width: 767px) {
			.arun_example-pkg-actions {
				opacity: 1;
				transform: none;
			}
		}

		.arun_example-pkg-btn {
			font-family: var(--font-body);
			font-size: 0.8rem;
			font-weight: 600;
			padding: 8px 18px;
			border-radius: 50px;
			border: none;
			cursor: pointer;
			text-decoration: none;
			display: inline-flex;
			align-items: center;
			gap: 5px;
			transition: background 0.2s;
		}

		.arun_example-pkg-btn.solid {
			background: var(--saffron);
			color: var(--white);
		}

		.arun_example-pkg-btn.solid:hover {
			background: var(--saffron-dk);
			color: var(--white);
		}

		.arun_example-pkg-btn.glass {
			background: rgba(255, 255, 255, 0.14);
			color: var(--white);
			backdrop-filter: blur(6px);
		}

		.arun_example-pkg-btn.glass:hover {
			background: rgba(255, 255, 255, 0.24);
			color: var(--white);
		}

		/* ===== DESTINATIONS GALLERY ===== */
		.arun_example-gallery {
			padding: var(--section-gap) 0;
			background: var(--cream);
		}

		.arun_example-gal-grid {
			display: grid;
			grid-template-columns: repeat(12, 1fr);
			grid-auto-rows: 215px;
			gap: 12px;
		}

		.arun_example-gal-item {
			border-radius: 12px;
			overflow: hidden;
			position: relative;
			cursor: pointer;
		}

		.arun_example-gal-item:nth-child(1) {
			grid-column: span 5;
			grid-row: span 2;
		}

		.arun_example-gal-item:nth-child(2) {
			grid-column: span 4;
		}

		.arun_example-gal-item:nth-child(3) {
			grid-column: span 3;
		}

		.arun_example-gal-item:nth-child(4) {
			grid-column: span 3;
		}

		.arun_example-gal-item:nth-child(5) {
			grid-column: span 4;
		}

		.arun_example-gal-item:nth-child(6) {
			grid-column: span 5;
		}

		.arun_example-gal-item img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			transition: transform 0.5s ease;
		}

		.arun_example-gal-item:hover img {
			transform: scale(1.09);
		}

		.arun_example-gal-cap {
			position: absolute;
			inset: 0;
			background: linear-gradient(to top, rgba(26, 74, 90, 0.88) 0%, transparent 55%);
			display: flex;
			align-items: flex-end;
			padding: 18px;
			/* opacity: 0; */
			transition: opacity 0.3s;
		}

		.arun_example-gal-item:hover .arun_example-gal-cap {
			opacity: 1;
		}

		.arun_example-gal-cap a {
			color: var(--white);
			font-family: var(--font-head);
			font-size: 1rem;
			font-weight: 700;
			text-decoration: none;
		}

		.arun_example-gal-cap a::after {
			content: ' →';
			color: var(--saffron-lt);
		}

		@media (max-width: 991px) {
			.arun_example-gal-grid {
				grid-template-columns: repeat(2, 1fr);
				grid-auto-rows: 180px;
			}

			.arun_example-gal-item {
				grid-column: span 1 !important;
				grid-row: span 1 !important;
			}
		}

		@media (max-width: 575px) {
			.arun_example-gal-grid {
				grid-template-columns: 1fr;
				grid-auto-rows: 200px;
			}
		}

		/* ===== VEHICLES ===== */
		.arun_example-vehicles {
			padding: var(--section-gap) 0;
			background: var(--teal-xlt);
		}

		.arun_example-vehicle-card {
			background: var(--white);
			border-radius: var(--card-radius);
			padding: 26px 22px;
			text-align: center;
			border: 1px solid #E0EDF2;
			transition: transform 0.3s, box-shadow 0.3s;
		}

		.arun_example-vehicle-card:hover {
			transform: translateY(-6px);
			box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
		}

		.arun_example-vehicle-card .vehicle-icon {
			font-size: 2.8rem;
			color: var(--saffron);
			margin-bottom: 14px;
		}

		.arun_example-vehicle-card h5 {
			font-size: 1.05rem;
			font-weight: 700;
			color: var(--dark);
			margin-bottom: 6px;
		}

		.arun_example-vehicle-card p {
			font-size: 0.83rem;
			color: var(--mid);
			margin-bottom: 16px;
		}

		.arun_example-vehicle-card .capacity-badge {
			display: inline-flex;
			align-items: center;
			gap: 5px;
			background: var(--teal-xlt);
			color: var(--teal);
			font-size: 0.78rem;
			font-weight: 600;
			padding: 5px 14px;
			border-radius: 50px;
		}

		/* ===== CTA BAND ===== */
		.arun_example-cta {
			background: var(--saffron);
			padding: 80px 0;
			position: relative;
			overflow: hidden;
		}

		.arun_example-cta::before {
			content: '';
			position: absolute;
			top: -80px;
			right: -80px;
			width: 320px;
			height: 320px;
			border-radius: 50%;
			background: rgba(255, 255, 255, 0.1);
			pointer-events: none;
		}

		.arun_example-cta::after {
			content: '';
			position: absolute;
			bottom: -100px;
			left: -80px;
			width: 380px;
			height: 380px;
			border-radius: 50%;
			background: rgba(255, 255, 255, 0.06);
			pointer-events: none;
		}

		.arun_example-cta h2 {
			color: var(--white);
			font-size: clamp(1.9rem, 3.5vw, 2.9rem);
			font-weight: 900;
		}

		.arun_example-cta p {
			color: rgba(255, 255, 255, 0.82);
			font-size: 1rem;
			margin-top: 12px;
		}

		.arun_example-cta-btn {
			display: inline-flex;
			align-items: center;
			gap: 9px;
			background: var(--white);
			color: var(--saffron-dk);
			font-family: var(--font-body);
			font-weight: 700;
			font-size: 0.97rem;
			padding: 15px 34px;
			border: none;
			border-radius: 50px;
			cursor: pointer;
			text-decoration: none;
			transition: transform 0.2s, box-shadow 0.2s;
			box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
		}

		.arun_example-cta-btn:hover {
			transform: translateY(-3px);
			box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
			color: var(--saffron-dk);
		}

		/* ===== TESTIMONIALS ===== */
		.arun_example-testimonials {
			padding: var(--section-gap) 0;
			background: var(--cream);
		}

		.arun_example-testi-card {
			background: var(--white);
			border-radius: var(--card-radius);
			padding: 32px 28px;
			border: 1px solid #ECF0F5;
			height: 100%;
			position: relative;
		}

		.arun_example-testi-card .quote-icon {
			font-size: 2.4rem;
			color: var(--saffron);
			opacity: 0.25;
			position: absolute;
			top: 20px;
			right: 24px;
			font-family: Georgia, serif;
			line-height: 1;
		}

		.arun_example-testi-card .stars {
			color: #F6B93B;
			font-size: 0.9rem;
			margin-bottom: 14px;
		}

		.arun_example-testi-card p {
			font-size: 0.9rem;
			line-height: 1.72;
			color: var(--mid);
			margin-bottom: 22px;
			font-style: italic;
		}

		.arun_example-testi-card .reviewer {
			display: flex;
			align-items: center;
			gap: 12px;
		}

		.arun_example-testi-card .reviewer-avatar {
			width: 44px;
			height: 44px;
			border-radius: 50%;
			background: var(--teal-xlt);
			display: flex;
			align-items: center;
			justify-content: center;
			font-family: var(--font-head);
			font-weight: 700;
			color: var(--teal);
			font-size: 1.1rem;
			flex-shrink: 0;
		}

		.arun_example-testi-card .reviewer-name {
			font-weight: 700;
			font-size: 0.9rem;
			color: var(--dark);
		}

		.arun_example-testi-card .reviewer-loc {
			font-size: 0.78rem;
			color: var(--light-text);
		}

		@media (max-width: 767px) {
			:root {
				--section-gap: 40px;
			}

			.arun_example-booking-bar {
				padding: 22px 18px;
			}
		}

		/* --- Top Contact Bar --- */
		.arun_example-topbar {
			background: var(--teal);
			padding: 7px 0;
			font-size: 0.8rem;
			border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		}

		.arun_example-topbar-item {
			display: flex;
			align-items: center;
			gap: 7px;
			color: rgba(255, 255, 255, 0.75);
			flex-wrap: wrap;
		}

		.arun_example-topbar-item i {
			color: var(--saffron);
			font-size: 0.78rem;
		}

		.arun_example-topbar-item a {
			color: rgba(255, 255, 255, 0.75);
			text-decoration: none;
			transition: color 0.2s;
		}

		.arun_example-topbar-item a:hover {
			color: var(--saffron-lt);
		}

		.arun_example-topbar-sep {
			color: rgba(255, 255, 255, 0.25);
			margin: 0 4px;
		}

		.arun_example-topbar-right {
			justify-content: flex-end;
		}

		@media (max-width: 767px) {
			.arun_example-topbar-right {
				justify-content: flex-start;
				margin-top: 3px;
			}
		}

		/* --- Navbar --- */
		.arun_example-nav {
			background: rgb(255 255 255 / 97%);
			backdrop-filter: blur(14px);
			-webkit-backdrop-filter: blur(14px);
			padding-top: 10px;
			padding-bottom: 10px;
			box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
			transition: padding 0.3s, box-shadow 0.3s;
			position: sticky;
			top: 0;
			z-index: 999;
		}

		.arun_example-nav.nav-shrunk {
			padding-top: 6px;
			padding-bottom: 6px;
			box-shadow: 0 4px 28px rgba(0, 0, 0, 0.22);
		}

		/* Logo */
		.arun_example-nav-logo {
			height: 53px;
			width: auto;
			object-fit: contain;
			transition: height 0.3s;
		}

		.arun_example-nav.nav-shrunk .arun_example-nav-logo {
			height: 40px;
		}

		/* Mobile toggle */
		.arun_example-nav-toggle {
			border: 1.5px solid #33acee;;
			border-radius: 8px;
			padding: 14px 10px;
			background: transparent;
		}

		.arun_example-nav-toggle:focus {
			box-shadow: 0 0 0 3px rgba(232, 115, 42, 0.3);
			outline: none;
		}

		.arun_example-nav-toggle-icon,
		.arun_example-nav-toggle-icon::before,
		.arun_example-nav-toggle-icon::after {
			display: block;
			width: 22px;
			height: 2px;
			background: rgb(40 22 106);
			border-radius: 2px;
			transition: all 0.3s;
		}

		.arun_example-nav-toggle-icon {
			position: relative;
		}

		.arun_example-nav-toggle-icon::before,
		.arun_example-nav-toggle-icon::after {
			content: '';
			position: absolute;
		}

		.arun_example-nav-toggle-icon::before {
			top: -7px;
		}

		.arun_example-nav-toggle-icon::after {
			top: 7px;
		}

		/* Nav links */
		.arun_example-nav-link {
			color: rgb(38 21 104) !important;
			font-family: var(--font-body);
			font-weight: 500;
			font-size: 0.88rem;
			letter-spacing: 0.01em;
			padding: 8px 13px !important;
			border-radius: 7px;
			transition: color 0.2s, background 0.2s;
			position: relative;
		}

		.arun_example-nav-link::after {
			content: '';
			position: absolute;
			bottom: 4px;
			left: 13px;
			width: 0;
			height: 2px;
			background: var(--saffron);
			border-radius: 2px;
			transition: width 0.25s;
		}

		.arun_example-nav-link:hover,
		.arun_example-nav-link:focus {
            color: #0092dd !important;
			background: rgba(255, 255, 255, 0.08);
		}

		.arun_example-nav-link:hover::after {
			width: calc(100% - 26px);
		}

		/* Active page highlight */
		.arun_example-nav-link.active-page {
			color: var(--white) !important;
		}

		.arun_example-nav-link.active-page::after {
			width: calc(100% - 26px);
		}

		/* CTA button */
		.arun_example-nav-cta {
			background: var(--saffron) !important;
			color: var(--white) !important;
			border-radius: 50px !important;
			padding: 9px 22px !important;
			font-weight: 600 !important;
			font-size: 0.88rem;
			box-shadow: 0 3px 14px rgba(232, 115, 42, 0.35);
			transition: background 0.25s, transform 0.2s, box-shadow 0.25s !important;
		}

		.arun_example-nav-cta:hover {
			background: var(--saffron-dk) !important;
			transform: translateY(-2px);
			box-shadow: 0 7px 22px rgba(232, 115, 42, 0.45) !important;
		}

		.arun_example-nav-cta::after {
			display: none !important;
		}

		/* Dropdown */
		.arun_example-dropdown {
			background: var(--white);
			border: none;
			border-radius: 12px;
			box-shadow: 0 16px 50px rgba(0, 0, 0, 0.14);
			padding: 8px;
			min-width: 220px;
			margin-top: 6px;
			animation: arun-dropdown-in 0.2s ease;
		}

		@keyframes arun-dropdown-in {
			from {
				opacity: 0;
				transform: translateY(-8px);
			}

			to {
				opacity: 1;
				transform: translateY(0);
			}
		}

		.arun_example-dropdown-item {
			color: var(--mid) !important;
			font-family: var(--font-body);
			font-size: 0.88rem;
			font-weight: 500;
			padding: 9px 14px !important;
			border-radius: 8px;
			transition: background 0.18s, color 0.18s;
			display: flex;
			align-items: center;
			gap: 8px;
		}

		.arun_example-dropdown-item i {
			color: var(--saffron);
			font-size: 0.82rem;
		}

		.arun_example-dropdown-item:hover,
		.arun_example-dropdown-item:focus {
			background: var(--teal-xlt) !important;
			color: var(--teal) !important;
		}

		/* Mobile expanded nav */
		@media (max-width: 991px) {
			#navMenu {
				background: var(--teal);
				border-radius: 12px;
				margin-top: 10px;
				padding: 12px;
			}

			.arun_example-nav-link::after {
				display: none;
			}

			.arun_example-dropdown {
				background: rgba(255, 255, 255, 0.07);
				box-shadow: none;
				border-radius: 8px;
				margin: 4px 0;
			}

			.arun_example-dropdown-item {
				color: rgba(255, 255, 255, 0.75) !important;
			}

			.arun_example-dropdown-item:hover {
				background: rgba(255, 255, 255, 0.1) !important;
				color: var(--white) !important;
			}
		}

  /* --- Footer --- */
  .arun_example-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.55);
    padding: 80px 0 0;
    font-family: var(--font-body);
  }

  .arun_example-footer-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    margin-bottom: 18px;
    /* Brighten logo on dark bg */
    /* filter: brightness(0) invert(1); */
    opacity: 0.9;
  }

  .arun_example-footer-desc {
    font-size: 0.86rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.45);
    max-width: 310px;
    margin-bottom: 24px;
  }

  .arun_example-footer-heading {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }

  .arun_example-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--saffron);
    border-radius: 2px;
  }

  .arun_example-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .arun_example-footer-list li {
    margin-bottom: 10px;
  }

  .arun_example-footer-list a {
    color: rgba(255, 255, 255, 0.48);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .arun_example-footer-list a::before {
    content: '›';
    color: var(--saffron);
    font-size: 1rem;
    transition: transform 0.2s;
  }

  .arun_example-footer-list a:hover {
    color: var(--saffron-lt);
    padding-left: 4px;
  }

  /* Contact rows */
  .arun_example-footer-contact {
    font-style: normal;
  }

  .arun_example-footer-contact-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.5);
  }

  .arun_example-footer-contact-row i {
    color: var(--saffron);
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .arun_example-footer-contact-row a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
  }

  .arun_example-footer-contact-row a:hover {
    color: var(--saffron-lt);
  }

  /* Social */
  .arun_example-footer-social {
    display: flex;
    gap: 10px;
	margin-bottom: 18px;
  }

  .arun_example-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
  }

  .arun_example-footer-social a:hover {
    background: var(--saffron);
    border-color: var(--saffron);
    color: var(--white);
    transform: translateY(-3px);
  }

  /* Bottom bar */
  .arun_example-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: 60px;
    padding: 22px 0;
  }

  .arun_example-footer-bottom-inner {
    /* display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px; */
    text-align: center;
  }

  .arun_example-footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
  }

  .arun_example-footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
  }

  .arun_example-footer-legal a {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.2s;
  }

  .arun_example-footer-legal a:hover {
    color: var(--saffron-lt);
  }

  @media (max-width: 575px) {
    .arun_example-footer-bottom-inner {
      flex-direction: column;
      text-align: center;
    }
  }

  /* --- WhatsApp Float --- */
  .arun_example-whatsapp-float {
    position: fixed;
    bottom: 88px;
    right: 22px;
    width: 52px;
    height: 52px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    z-index: 900;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    animation: arun-wp-bounce 2.5s ease-in-out 3s infinite;
    transition: transform 0.2s;
  }

  .arun_example-whatsapp-float:hover {
    color: var(--white);
    transform: scale(1.1);
    animation: none;
  }

  @keyframes arun-wp-bounce {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-8px);
    }
  }

  /* --- Back to Top --- */
  .arun_example-back-top {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 46px;
    height: 46px;
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 900;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.3s, transform 0.3s, background 0.2s;
  }

  .arun_example-back-top.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .arun_example-back-top:hover {
    background: var(--saffron);
  }
  /* Gallery – uniform 8-card grid */
.arun_example-gal-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    height: 300px;        /* fixed card height */
}
.arun_example-gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.arun_example-gal-item:hover img { transform: scale(1.09); }

/* Remove the old asymmetric nth-child column spans */
.arun_example-gal-grid { display: block; }
.arun_example-gal-item:nth-child(n) {
    grid-column: unset;
    grid-row: unset;
}

@media (max-width: 575px) {
    .arun_example-gal-item { height: 170px; }
}
