/* =========================================
   1. THEME VARIABLES & RESET
   ========================================= */
:root {
	--primary-orange: #2E1515; /* dark brown from image */
	--primary-pink:#d68c65;
	--orange-glow: rgba(46, 21, 21, 0.5);
	/* Ancient Glow Intensity */
	--white: #ffffff;
	--glass-bg: rgba(46, 21, 21, 0.55);   /* brown glass */

	--glass-border: 1px solid rgba(255, 255, 255, 0.15);
	--glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
	--glass-blur: 20px;
	--font-main: 'Manrope', sans-serif;
	--nav-height: 76px;
}

/* --- BODY SCROLL LOCK (New Class) --- */
body.no-scroll {
	overflow: hidden !important;
	/* Forces site to stop scrolling */
	height: 100vh;
	/* Keeps height fixed */
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    font-family: var(--font-main);
    
    /* CHANGED: Background set to the specific Terracotta/Peach color */
    background: #E89D75; /* The base color from your swatch */
    /* Optional: A subtle gradient to give it depth, staying within the color range */
    background: linear-gradient(135deg, #E89D75 0%, #d68c65 100%);
    
    color: #210400;
    line-height: 1.7;
}

/* Dark Overlay for Readability */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Transparent so the background color isn't darkened */
    background: rgba(0, 0, 0, 0) !important; 
    z-index: -2;
    pointer-events: none;
}

section,
header,
footer {
	overflow: hidden;
	width: 100%;
	position: relative;
}

/* =========================================
   2. ANCIENT LIGHT EFFECTS (GLOW SPOTS)
   ========================================= */
.glow-spot {
	position: absolute;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, var(--orange-glow) 0%, rgba(46,21,21,0) 70%);

	border-radius: 50%;
	pointer-events: none;
	z-index: -1;
	opacity: 0.6;
	filter: blur(40px);
	animation: flicker 4s infinite alternate;
}

@keyframes flicker {
	0% {
		opacity: 0.5;
		transform: scale(1);
	}

	100% {
		opacity: 0.7;
		transform: scale(1.1);
	}
}

.light-left {
	left: -100px;
	top: 20%;
}

.light-right {
	right: -100px;
	bottom: 20%;
}

.light-center {
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 500px;
	height: 500px;
	opacity: 0.3;
}

/* =========================================
   3. UTILITIES & GLASSY UI
   ========================================= */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

.section-padding {
	padding: 100px 0;
}

.text-center {
	text-align: center;
}

.orange-text {
	color: var(--primary-pink);
}
.white-text{
	color:var(--white);
}

.section-title {
	font-size: 2.8rem;
	font-weight: 800;
	color: #210400;
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
	line-height: 1.2;
	text-shadow: 0 0 20px rgba(46, 21, 21, 0.3);
}

.section-subtitle {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.7);
	max-width: 700px;
	margin: 0 auto 60px;
}

.glass-effect {
	background: rgba(70, 35, 35, 0.65);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255,255,255,0.15);
	box-shadow: 0 8px 32px rgba(0,0,0,0.5);
	border-radius: 20px;
}

.btn-glass-orange {
	display: inline-block;
	/* SIZE REDUCED HERE */
	padding: 10px 25px;
	/* Old: 14px 40px */
	font-size: 0.8rem;
	/* Old: 0.9rem */

	background: linear-gradient(135deg, #2E1515, #4a1f1f);

	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 0 30px rgba(46,21,21,0.8);
	color: white;
	font-weight: 700;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
}

.btn-glass-orange:hover {
	transform: translateY(-2px);
	/* Movement reduced slightly */
	background: linear-gradient(135deg, #2E1515, #4a1f1f);
	box-shadow: 0 0 30px rgba(46,21,21,0.8);
}

/* =========================================
   4. NAVBAR
   ========================================= */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--nav-height);
	z-index: 1000;
	display: flex;
	align-items: center;
	transition: 0.4s;
	background: linear-gradient(90deg, #200400 0%, #451208 100%);
    
    /* NEW: Solid Orange Bottom Border */
    border-bottom: 2px solid var(--primary-orange);
    
    /* Stronger shadow for the header */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.logo img {
	height: 52px;
	/* desktop size */
	width: auto;
	display: block;
}

/* Mobile */
@media (max-width: 768px) {
	.logo img {
		height: 45px;
	}
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 25px;
	align-items: center;
}

.nav-link {
	color: rgba(255, 255, 255, 0.9);
	font-weight: 600;
	text-decoration: none;
	font-size: 0.95rem;
	position: relative;
	padding-bottom: 5px;
	transition: 0.3s;
}

.nav-link:hover {
	color: var(--primary-orange);
	text-shadow: 0 0 10px var(--primary-orange);
}

.hamburger {
	display: none;
	font-size: 1.6rem;
	
	cursor: pointer;
	transition: 0.3s;
}

.hamburger.hidden {
	opacity: 0;
	pointer-events: none;
}

.close-menu-item {
	display: none;
}

/* =========================================
   5. HERO SLIDER
   ========================================= */
.hero-slider {
	position: relative;
	height: 100vh;
	overflow: hidden;
	width: 100%;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
}

.slide.active {
	opacity: 1;
	z-index: 1;
}

.slide::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(1, 16, 34, 0.6);
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 850px;
	color: white;
	padding-left: 30px;
	border-left: 5px solid var(--primary-orange);
	transform: translateY(30px);
	opacity: 0;
	transition: 0.8s ease-out 0.5s;
}

.slide.active .hero-content {
	transform: translateY(0);
	opacity: 1;
}

.hero-title {
	font-size: 4.2rem;
	line-height: 1.1;
	font-weight: 800;
	margin-bottom: 25px;
}

.hero-subtitle {
	font-size: 1.25rem;
	margin-bottom: 40px;
	opacity: 0.9;
	font-weight: 300;
}

.slider-dots {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 10;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: 0.3s;
}

.dot.active {
	background: var(--primary-orange);
	transform: scale(1.3);
	box-shadow: 0 0 10px var(--orange-glow);
}

/* =========================================
   6. PORTFOLIO CARD DESIGN (NEW)
   ========================================= */
.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.portfolio-card {
	background: rgba(2, 26, 54, 0.6);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 20px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
}

.portfolio-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
	border-color: var(--primary-orange);
}

.card-image-box {
	height: 220px;
	width: 100%;
	overflow: hidden;
	position: relative;
}

.card-image-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.portfolio-card:hover .card-image-box img {
	transform: scale(1.1);
}

.card-content {
	padding: 25px;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.portfolio-title {
	font-size: 1.4rem;
	font-weight: 700;
	color: white;
	margin-bottom: 5px;
}

.portfolio-tag {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 20px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.btn-view-story {
	padding: 10px 25px;
	background: transparent;
	border: 1px solid var(--primary-orange);
	color: var(--primary-orange);
	border-radius: 50px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
	font-size: 0.9rem;
}

.btn-view-story:hover {
	background: var(--primary-orange);
	color: white;
	box-shadow: 0 0 15px var(--orange-glow);
}

/* =========================================
   7. STORY POPUP MODAL
   ========================================= */
.story-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	/* Darker BG for focus */
	backdrop-filter: blur(10px);
	z-index: 10000;
	display: none;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity 0.4s ease;
	padding: 20px;
	/* Padding for mobile edges */
}

.story-modal-overlay.show {
	display: flex;
	opacity: 1;
}

.story-modal-content {
	width: 100%;
	max-width: 600px;
	background: rgba(2, 26, 54, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-left: 5px solid var(--primary-orange);
	border-radius: 15px;
	padding: 30px;
	position: relative;
	box-shadow: 0 0 50px rgba(243, 126, 32, 0.3);
	transform: scale(0.9);
	transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

	/* --- IMPORTANT FOR SCROLLING --- */
	max-height: 85vh;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
}

.story-modal-overlay.show .story-modal-content {
	transform: scale(1);
}

.story-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 15px;
	flex-shrink: 0;
	/* Header doesn't shrink */
}

.story-title {
	font-size: 1.8rem;
	color: var(--primary-orange);
	font-weight: 800;
	line-height: 1.3;
}

.close-story {
	font-size: 2rem;
	color: rgba(255, 255, 255, 0.6);
	cursor: pointer;
	transition: 0.3s;
	line-height: 1;
	margin-left: 15px;
}

.close-story:hover {
	color: #ff4d4d;
}

.story-body {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.8;
	/* No max-height here, parent handles scroll */
}

/* Custom Scrollbar for Modal */
.story-modal-content::-webkit-scrollbar {
	width: 6px;
}

.story-modal-content::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
}

.story-modal-content::-webkit-scrollbar-thumb {
	background: var(--primary-orange);
	border-radius: 10px;
}

/* =========================================
   8. COMMON SECTIONS (About, Services, Process)
   ========================================= */
.about-grid {
	display: grid;

	grid-template-columns: auto 1fr;
	gap: 60px;
	align-items: start;
	margin-bottom: 80px;
}

/* --- IMAGE BOX CONTAINER --- */
.about-img-box {
	position: relative;
	z-index: 1;

	width: fit-content;
}

.about-img-box img {

	width: 450px;
	height: 550px;


	object-fit: cover;
	object-position: top;

	/* 3. Styling */
	border-radius: 15px;
	border: var(--glass-border);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
	display: block;
}

/* Hover Effect */
.about-img-box:hover img {
	transform: scale(1.02);
}

/* --- TEXT CONTENT --- */
.about-content {

	padding-top: 5px;
}

/* --- FLOAT CARD (ADJUSTED FOR SMALL IMAGE) --- */
.about-float-card {
	position: absolute;
	bottom: 30px;
	right: -40px;
	padding: 25px;
	max-width: 200px;
	border-left: 4px solid var(--primary-orange);
	z-index: 2;
	backdrop-filter: blur(25px);
	/* Glass Blur */
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-float-card h4 {
	color: #210400;
	font-size: 1.8rem;
	margin: 0;
	font-weight: 800;
}

.about-float-card p {
	margin: 0;
	font-size: 0.9rem;
	opacity: 0.9;
}

.mv-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-top: 80px;
}

.mv-card {
	padding: 50px;
	position: relative;
	overflow: hidden;
	background: rgba(255, 240, 230, 0.85) !important;
    border: 1px solid rgba(0,0,0,0.08);
    backdrop-filter: blur(12px);
}

.mv-card h3 {
	font-size: 1.8rem;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 15px;
}

.mv-card i {
	color: var(--primary-orange);
	font-size: 2rem;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 60px;
}

.process-card {
	padding: 40px 25px;
	text-align: center;
	position: relative;
}

.process-step {
	font-size: 4rem;
	font-weight: 800;
	color: rgba(243, 126, 32, 0.2);
	position: absolute;
	top: 10px;
	left: 20px;
	z-index: -1;
}

.process-icon {
	font-size: 2.5rem;
	color: var(--primary-orange);
	margin-bottom: 25px;
}

.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.info-card {
	padding: 50px 30px;
	transition: 0.4s;
	position: relative;
	overflow: hidden;
	background: rgba(255, 240, 230, 0.85);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 20px;
}

.info-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
	border-bottom: 4px solid var(--primary-orange) !important;
}

.icon-box {
	width: 70px;
	height: 70px;
	background: rgba(46, 21, 21, 0.15);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.8rem;
	color: var(--primary-orange);
	margin-bottom: 25px;
	transition: 0.4s;
	border: 1px solid rgba(46, 21, 21, 0.3);
}

.info-card:hover .icon-box {
	background: var(--primary-orange);
	color: white;
	box-shadow: 0 0 15px var(--orange-glow);
}

.info-card h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: #210400;
}

.info-card p {
	color: #4a2a2a;
}

/* Stats */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	text-align: center;
}

.stat-card {
	padding: 40px 20px;
}

.stat-number {
	font-size: 3.5rem;
	font-weight: 800;
	color: var(--primary-orange);
	margin-bottom: 10px;
	display: block;
}

.stat-label {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.8);
}

/* =========================================
   9. TESTIMONIALS SLIDER
   ========================================= */
.testimonial-slider-container {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	overflow: hidden;
	padding: 30px 20px 80px 20px;
}

.testimonial-track {
	display: flex;
}

.testimonial-slide {
	min-width: 100%;
	box-sizing: border-box;
	padding: 0 10px;
}

.testimonial-card {
	padding: 50px;
	text-align: center;
}

.quote-icon {
	font-size: 3rem;
	color: rgba(243, 126, 32, 0.3);
	margin-bottom: 25px;
}

.review-text {
	font-size: 1.3rem;
	font-style: italic;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 30px;
	line-height: 1.6;
}

.client-info h5 {
	font-size: 1.2rem;
	color: var(--primary-orange);
}

.testimonial-dots {
	position: absolute;
	bottom: 20px;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	z-index: 10;
}

.t-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: 0.3s;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.t-dot.active {
	background: var(--primary-orange);
	width: 35px;
	border-radius: 10px;
	box-shadow: 0 0 10px var(--orange-glow);
}

/* =========================================
   10. FORM & TOAST POPUP
   ========================================= */
.enquiry-wrapper {
	padding: 120px 0;
}

.form-glass {
	max-width: 900px;
	margin: 0 auto;
	padding: 60px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
	margin-bottom: 25px;
}

.form-input {
	width: 100%;
	padding: 18px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border-radius: 8px;
	font-size: 1rem;
	color: white;
	font-family: var(--font-main);
	transition: 0.3s;
}

.form-input:focus {
	outline: none;
	border-color: var(--primary-orange);
	background: rgba(255, 255, 255, 0.12);
}

textarea.form-input {
	height: 120px;
	resize: none;
}

select.form-input option {
	background-color: #011022;
	color: white;
}

/* Success Popup */
.toast-notification {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.9);
	background: rgba(2, 26, 54, 0.95);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-left: 5px solid var(--primary-orange);
	padding: 30px 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 15px;
	border-radius: 15px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
	z-index: 10000;
	min-width: 320px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.active {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1);
}

.toast-icon {
	font-size: 3rem;
	color: var(--primary-orange);
	margin-bottom: 10px;
}

.toast-content h4 {
	margin: 0 0 5px 0;
	font-size: 1.5rem;
	color: white;
	font-weight: 700;
}

.toast-content p {
	margin: 0;
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.8);
}

/* =========================================
   11. FOOTER & EXTRAS
   ========================================= */
.map-section {
	height: 450px;
	width: 100%;
	margin-bottom: -60px;
	position: relative;
	z-index: 1;
}

.map-frame {
	width: 100%;
	height: 100%;
	border: none;
	filter: grayscale(100%) contrast(1.2) brightness(0.8);
	transition: 0.5s;
}

.map-frame:hover {
	filter: grayscale(0%);
}

footer {
	padding: 120px 0 30px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 50px;
}

.footer h4 {
	color: white;
	margin-bottom: 25px;
	font-size: 1.2rem;
}

.footer-links li {
	margin-bottom: 12px;
	list-style: none;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: 0.3s;
}

.footer-links a:hover {
	color: var(--primary-orange);
	padding-left: 5px;
}

.socials a {
	display: inline-flex;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.08);
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	margin-right: 10px;
	color: white;
	transition: 0.3s;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.socials a:hover {
	background: var(--primary-orange);
	border-color: var(--primary-orange);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px var(--orange-glow);
}

.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #2E1515, #4a1f1f);

	border: 1px solid rgba(255, 255, 255, 0.4);
	box-shadow: 0 0 15px rgba(243, 126, 32, 0.6);
	color: white;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	font-size: 1.2rem;
	z-index: 10000;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.4s ease;
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top:hover {
	transform: translateY(-5px);
	box-shadow: 0 0 25px rgba(243, 126, 32, 1);
}

/* =========================================
   12. RESPONSIVE MEDIA QUERIES
   ========================================= */
@media (max-width: 1024px) {
	.hero-title {
		font-size: 3.5rem;
	}

	.grid-3,
	.process-grid,
	.stats-grid,
	.portfolio-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.about-grid {
		grid-template-columns: 1fr 1fr;
	}

	.about-img-box img {
		width: 100%;
		height: auto;
	}

	.about-img-box {
		max-width: 100%;
	}

	.about-float-card {
		right: -20px;
		bottom: 20px;
	}
}


@media (max-width: 768px) {
	.hamburger {
		display: block;
		z-index: 1002;
	}

	.about-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.about-img-box {
		width: 100%;
	}

	.about-img-box img {
		width: 100%;
		height: 450px;
	}

	.about-float-card {
		position: relative;
		bottom: auto;
		right: auto;
		left: 0;
		margin-top: -30px;
		margin-left: auto;
		width: 90%;
	}

	/* Mobile Menu */
	.nav-menu {
		position: fixed;
		top: 0;
		right: -320px;
		width: 300px;
		height: 100vh;
		flex-direction: column;
		align-items: flex-start;
		padding: 30px;
		padding-top: 40px;
		transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		z-index: 1001;
		background: #200400; 
        
        /* CHANGED: Orange border on the left */
        border-left: 2px solid var(--primary-orange);
        
        box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8);
	}

	.nav-menu.active {
		right: 0;
	}

	.close-menu-item {
		display: flex;
		justify-content: flex-end;
		width: 100%;
		margin-bottom: 30px;
	}

	.close-menu {
		font-size: 1.8rem;
		color: rgba(255, 255, 255, 0.8);
		cursor: pointer;
	}

	.nav-menu li {
		width: 100%;
	}

	.nav-link {
		font-size: 1.2rem;
		display: block;
		padding: 15px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.navbar .btn-glass-orange {
		width: 100%;
		text-align: center;
		margin-top: 25px;
		padding: 15px;
		font-size: 1rem;
	}

	/* Layout Fixes */
	.about-grid,
	.grid-3,
	.footer-grid,
	.form-row,
	.mv-grid,
	.process-grid,
	.stats-grid,
	.portfolio-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	/* Typography Scale */
	.hero-title {
		font-size: 2.3rem;
	}

	.section-title {
		font-size: 2rem;
		color: #210400;
	}

	.section-subtitle {
		font-size: 1rem;
	}

	/* Spacing & Components */
	.section-padding {
		padding: 60px 0;
	}

	.container {
		padding: 0 15px;
	}

	.about-float-card {
		position: relative;
		bottom: 0;
		right: 0;
		max-width: 100%;
		margin-top: 30px;
	}

	.form-glass {
		padding: 30px 20px;
	}

	.testimonial-card {
		padding: 30px 10px;
	}

	.map-section {
		height: 350px;
	}

	.card-image-box {
		height: 200px;
	}

	/* Toast & Modal Mobile */
	.toast-notification {
		width: 85%;
		padding: 25px;
	}

	.story-modal-content {
		width: 100%;
		padding: 20px;
		max-height: 80vh;
	}

	.story-title {
		font-size: 1.4rem;
	}

	.story-body {
		font-size: 0.95rem;
	}
}




/* --- RECENT WORKS SLIDER (INFINITE LOOP) --- */
.slider-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.slider-track {
    display: flex;
    width: 100%;
    
}

.slider-item {
    /* Desktop: 3 items visible */
    min-width: 33.333%; 
    padding: 0 15px; 
    box-sizing: border-box;
    flex-shrink: 0; 
}

.slider-item img {
    width: 350px;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.slider-item:hover img {
    transform: scale(1.05);
    border-color: var(--primary-orange);
}

/* Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.control-btn {
    width: 50px; height: 50px; border-radius: 50%;
    background: var(--primary-orange); border: 1px solid var(--primary-orange);
    color: white; font-size: 1.2rem; cursor: pointer; transition: all 0.3s ease;
    backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center;
}



/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .slider-item { min-width: 50%; } /* Tablet: 2 items */
}

@media (max-width: 768px) {
    .slider-item { min-width: 100%; } /* Mobile: 1 item */
}


.section-title {
    color: #210400 !important;
}

.section-subtitle {
    color: #4a2a2a !important;
}


.about-float-card {
    background: rgba(255, 240, 230, 0.92) !important;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}


