* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  html {
	scroll-behavior: smooth;
  }
  
  body, html {
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: 'Poppins', sans-serif;
	overflow-x: hidden;
  }
  
  body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  }

  nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(75, 0, 130, 0.97);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 15px 30px;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	transition: all 0.3s ease;
	display: flex;
	justify-content: space-between;
	align-items: center;
  }
  
  .nav-brand {
	color: white;
	font-size: 1.4rem;
	font-weight: 600;
	text-decoration: none;
	font-family: 'Playfair Display', serif;
  }
  
  .nav-links {
	display: flex;
	gap: 30px;
	align-items: center;
  }
  
  nav a {
	color: white;
	text-decoration: none;
	font-weight: 500;
	font-size: 1rem;
	transition: all 0.3s ease;
	position: relative;
  }
  
  nav a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #ffd7ff, #b66bff);
	transition: width 0.3s ease;
  }
  
  nav a:hover {
	color: #ffd7ff;
	transform: translateY(-2px);
  }
  
  nav a:hover::after {
	width: 100%;
  }
  
  .hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 5px;
	z-index: 1001;
  }
  
  .hamburger span {
	width: 25px;
	height: 3px;
	background: white;
	margin: 3px 0;
	transition: all 0.3s ease;
	border-radius: 2px;
  }
  
  .hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
  }
  
  .hamburger.active span:nth-child(2) {
	opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
  }
  
  @media (max-width: 768px) {
	nav {
	  padding: 15px 20px;
	}
	
	.hamburger {
	  display: flex;
	}
	
	.nav-links {
	  position: fixed;
	  top: 0;
	  right: -100%;
	  height: 100vh;
	  width: 70%;
	  max-width: 300px;
	  background: rgba(75, 0, 130, 0.98);
	  backdrop-filter: blur(20px);
	  -webkit-backdrop-filter: blur(20px);
	  flex-direction: column;
	  justify-content: center;
	  align-items: center;
	  gap: 40px;
	  transition: right 0.4s ease;
	  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
	}
	
	.nav-links.active {
	  right: 0;
	}
	
	nav a {
	  font-size: 1.2rem;
	  padding: 10px 20px;
	}
	
	.nav-brand {
	  font-size: 1.2rem;
	}
  }
  
  /* Full-screen responsive image */
  #home {
	height: 100vh; /* full screen */
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
  }
  
  #home img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* keeps aspect ratio, no stretch */
  }

  

  /* Gallery styling */
.gallery-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 100px 30px 60px;
}

.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	padding: 20px 0;
  }
  
  .gallery-item {
	position: relative;
	overflow: visible;
	border-radius: 16px;
	box-shadow: 0 8px 30px rgba(75, 0, 130, 0.15);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	background: linear-gradient(135deg, #4b0082, #6c44d9, #b66bff, #ffd7ff, #4b0082);
	background-size: 400% 400%;
	padding: 4px;
	cursor: pointer;
	animation: glowingBorderAnim 4s ease-in-out infinite, gradientShift 8s ease infinite;
  }

  @keyframes glowingBorderAnim {
	0%, 100% {
	  box-shadow: 0 0 15px rgba(75, 0, 130, 0.3), 0 0 30px rgba(108, 68, 217, 0.2);
	}
	50% {
	  box-shadow: 0 0 25px rgba(75, 0, 130, 0.5), 0 0 50px rgba(182, 107, 255, 0.3);
	}
  }

  .gallery-item::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, #4b0082, #6c44d9, #b66bff, #ffd7ff, #4b0082, #6c44d9);
	background-size: 300% 300%;
	border-radius: 18px;
	z-index: -1;
	animation: rotateBorderGradient 3s linear infinite;
	filter: blur(3px);
	opacity: 0.7;
  }
  
  @keyframes gradientShift {
	0%, 100% {
	  background-position: 0% 50%;
	}
	50% {
	  background-position: 100% 50%;
	}
  }

  @keyframes rotateBorderGradient {
	0% {
	  background-position: 0% 50%;
	}
	50% {
	  background-position: 100% 50%;
	}
	100% {
	  background-position: 0% 50%;
	}
  }

  .gallery img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	display: block;
	border-radius: 12px;
  }
  
  .gallery-item:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 0 25px 60px rgba(75, 0, 130, 0.3), 0 0 30px rgba(182, 107, 255, 0.4);
  }

  .gallery-item:hover::before {
	opacity: 1;
	filter: blur(6px);
  }
  
  .gallery-item:hover img {
	transform: scale(1.08);
  }
  
  /* Hide gallery overlay text - per requirements */
  .gallery-overlay {
	display: none !important;
  }
  
  .gallery-text {
	display: none !important;
  }
  
  @media (max-width: 768px) {
	.gallery-container {
	  padding: 80px 20px 40px;
	}
	
	.gallery {
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	  gap: 25px;
	}
	
	.gallery img {
	  height: 250px;
	}

	.gallery-item {
	  padding: 3px;
	}
  }
  
  @media (max-width: 480px) {
	.gallery {
	  grid-template-columns: 1fr;
	  gap: 20px;
	}
  }

  .page-title {
	text-align: center;
	margin: 100px auto 20px;
	padding: 0 20px;
	animation: fadeInDown 0.8s ease-out;
  }

  .section-title {
	text-align: center;
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	color: #4b0082;
	margin: 40px auto 20px;
	position: relative;
	font-family: 'Playfair Display', serif;
	letter-spacing: 0.5px;
	animation: fadeIn 0.8s ease-out;
  }
  
  /* Decorative underline with gradient */
  .section-title::after {
	content: "";
	display: block;
	width: 100px;
	height: 4px;
	background: linear-gradient(90deg, #4b0082, #b66bff);
	margin: 15px auto 0;
	border-radius: 2px;
	animation: expandWidth 1s ease-out 0.3s backwards;
  }
  
  @keyframes fadeInDown {
	from {
	  opacity: 0;
	  transform: translateY(-30px);
	}
	to {
	  opacity: 1;
	  transform: translateY(0);
	}
  }
  
  @keyframes fadeIn {
	from {
	  opacity: 0;
	}
	to {
	  opacity: 1;
	}
  }
  
  @keyframes expandWidth {
	from {
	  width: 0;
	}
	to {
	  width: 100px;
	}
  }

  /* Contact Page Styling */
.contact-section {
	max-width: 1200px;
	margin: 100px auto 60px;
	padding: 30px;
	animation: fadeIn 0.8s ease-out;
  }
  
  .contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
  }
  
  .contact-form input,
  .contact-form textarea {
	padding: 15px;
	border-radius: 10px;
	border: 2px solid #e0e0e0;
	font-size: 1rem;
	width: 100%;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	transition: all 0.3s ease;
	background: white;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
	border-color: #4b0082;
	box-shadow: 0 0 0 4px rgba(75, 0, 130, 0.1);
	outline: none;
	transform: translateY(-2px);
  }
  
  .contact-form button {
	background: linear-gradient(135deg, #4b0082, #6c44d9);
	color: white;
	padding: 15px 30px;
	border: none;
	border-radius: 10px;
	font-size: 1.05rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(75, 0, 130, 0.3);
  }
  
  .contact-form button:hover {
	background: linear-gradient(135deg, #360062, #4b0082);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(75, 0, 130, 0.4);
  }
  
  .contact-form button:active {
	transform: translateY(-1px);
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
	.contact-section {
	  margin: 80px auto 40px;
	  padding: 20px;
	}
	
	.contact-form input,
	.contact-form textarea {
	  padding: 12px;
	}
	
	.contact-form button {
	  padding: 12px 24px;
	}
  }


  /* ----- Contact details (add-on styles) ----- */
.contact-section {
	max-width: 1200px;
	margin: 100px auto 60px;
	padding: 30px;
	box-sizing: border-box;
	animation: fadeIn 0.8s ease-out;
  }
  
  .contact-wrap {
	display: flex;
	gap: 40px;
	align-items: flex-start;
	justify-content: center;
  }
  
  /* Left column - business info */
  .contact-details {
	flex: 0 0 380px;
	background: #ffffff;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	color: #333;
	line-height: 1.7;
	transition: all 0.3s ease;
	animation: slideInLeft 0.8s ease-out;
  }
  
  .contact-details-centered {
	margin: 0 auto;
	max-width: 600px;
  }
  
  .contact-details:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(75, 0, 130, 0.15);
  }
  
  .contact-details h3 {
	margin: 0 0 15px;
	color: #4b0082;
	font-size: 1.4rem;
	font-weight: 700;
	font-family: 'Playfair Display', serif;
  }
  
  .contact-details p {
	margin: 12px 0;
	font-size: 1rem;
	color: #555;
  }
  
  .contact-details a {
	color: #4b0082;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
  }
  
  .contact-details a:hover {
	color: #6c44d9;
	text-decoration: underline;
  }
  
  /* Right column - form container */
  .contact-form {
	flex: 1 1 480px;
	min-width: 300px;
	background: #ffffff;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	animation: slideInRight 0.8s ease-out;
  }
  
  .contact-form:hover {
	box-shadow: 0 15px 40px rgba(75, 0, 130, 0.15);
  }
  
  /* if you already have form input styles, these will match; otherwise they improve look */
  .contact-form form {
	display: flex;
	flex-direction: column;
	gap: 18px;
  }
  
  .contact-form input,
  .contact-form textarea {
	padding: 15px;
	border-radius: 10px;
	border: 2px solid #e0e0e0;
	font-size: 1rem;
	width: 100%;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	transition: all 0.3s ease;
	background: white;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
	outline: none;
	border-color: #4b0082;
	box-shadow: 0 0 0 4px rgba(75, 0, 130, 0.1);
	transform: translateY(-2px);
  }
  
  .contact-form button {
	background: linear-gradient(135deg, #4b0082, #6c44d9);
	color: #fff;
	border: none;
	padding: 15px 30px;
	border-radius: 10px;
	cursor: pointer;
	font-size: 1.05rem;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(75, 0, 130, 0.3);
  }
  
  .contact-form button:hover {
	background: linear-gradient(135deg, #360062, #4b0082);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(75, 0, 130, 0.4);
  }
  
  .contact-form button:active {
	transform: translateY(-1px);
  }
  
  /* Responsive: stack columns on small screens */
  @media (max-width: 968px) {
	.contact-wrap {
	  flex-direction: column;
	  gap: 25px;
	}
	.contact-details,
	.contact-form {
	  width: 100%;
	  flex: none;
	}
	.contact-section {
	  margin-top: 80px;
	  padding: 20px;
	}
  }
  
  @keyframes slideInLeft {
	from {
	  opacity: 0;
	  transform: translateX(-50px);
	}
	to {
	  opacity: 1;
	  transform: translateX(0);
	}
  }
  
  @keyframes slideInRight {
	from {
	  opacity: 0;
	  transform: translateX(50px);
	}
	to {
	  opacity: 1;
	  transform: translateX(0);
	}
  }

  /* Responsive map below contact section */
.map-wrapper {
	max-width: 1200px;
	margin: 40px auto 60px;
	padding: 0 30px;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	background: #fff;
	transition: all 0.3s ease;
	animation: fadeIn 1s ease-out 0.3s backwards;
  }
  
  .map-wrapper:hover {
	box-shadow: 0 15px 40px rgba(75, 0, 130, 0.15);
  }
  
  /* Modern browsers: use aspect-ratio */
  .map-wrapper iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	aspect-ratio: 16 / 9;
  }
  
  /* Fallback for browsers without aspect-ratio support */
  @supports not (aspect-ratio: 16/9) {
	.map-wrapper {
	  position: relative;
	  padding-top: 56.25%; /* 16:9 ratio fallback */
	}
	.map-wrapper iframe {
	  position: absolute;
	  top: 0; left: 0;
	  width: 100%;
	  height: 100%;
	}
  }
  
  @media (max-width: 768px) {
	.map-wrapper {
	  margin: 30px auto 40px;
	  padding: 0 20px;
	}
  }

  
  /* ===========================
   Services section (theme-matching, elegant & responsive)
   =========================== */

.services-section {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	padding: 100px 30px 40px;
	box-sizing: border-box;
	min-height: calc(100vh - 100px);
  }
  
  .services-inner {
	max-width: 1200px;
	margin: 0 auto;
  }
  
  /* Header */
  .services-header {
	text-align: center;
	margin-bottom: 50px;
	animation: fadeInDown 0.8s ease-out;
  }
  
  .services-title {
	font-size: clamp(2rem, 5vw, 3rem);
	margin: 0;
	color: #4b0082;
	font-weight: 700;
	letter-spacing: 0.5px;
	font-family: 'Playfair Display', serif;
  }
  
  /* Subheading / tagline */
  .services-subtitle {
	margin: 15px auto 0;
	color: #5b4a7a;
	font-size: 1.1rem;
	opacity: 0.95;
	max-width: 600px;
  }
  
  /* Grid: responsive 1-3 columns */
  .services-grid {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	align-items: stretch;
  }
  
  /* Card */
  .service-card {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	background: #ffffff;
	border-radius: 16px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(11, 12, 20, 0.08);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	height: 100%;
	box-sizing: border-box;
	border: 1px solid rgba(75, 0, 130, 0.05);
	position: relative;
	overflow: hidden;
	animation: fadeInUp 0.8s ease-out backwards;
  }
  
  .service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #4b0082, #6c44d9, #b66bff);
	transform: scaleX(0);
	transition: transform 0.4s ease;
  }
  
  /* Hover lift */
  .service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(75, 0, 130, 0.15);
  }
  
  .service-card:hover::before {
	transform: scaleX(1);
  }
  
  /* Card heading */
  .card-title {
	margin: 0 0 20px;
	font-size: 1.3rem;
	color: #3a0066;
	font-weight: 700;
	font-family: 'Playfair Display', serif;
  }
  
  /* Service list */
  .service-card ul {
	list-style: none;
	padding: 0;
	margin: 10px 0 0;
	line-height: 1.9;
	color: #2f2f2f;
	font-size: 1rem;
  }
  
  /* small purple bullet with animation */
  .service-card li {
	position: relative;
	padding-left: 24px;
	margin: 10px 0;
	transition: transform 0.2s ease;
  }
  
  .service-card li:hover {
	transform: translateX(5px);
  }
  
  .service-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 10px;
	height: 10px;
	background: linear-gradient(135deg, #6b23c8, #4b0082);
	border-radius: 50%;
	box-shadow: 0 2px 4px rgba(75, 0, 130, 0.3);
	transition: transform 0.2s ease;
  }
  
  .service-card li:hover::before {
	transform: scale(1.3);
  }
  
  /* Tighten fonts on small screens */
  @media (max-width: 768px) {
	.services-section {
	  padding: 80px 20px 60px;
	}
	
	.services-title { 
	  font-size: clamp(1.8rem, 6vw, 2.5rem); 
	}
	
	.services-subtitle { 
	  font-size: 1rem; 
	}
	
	.card-title { 
	  font-size: 1.15rem; 
	}
	
	.service-card { 
	  padding: 24px; 
	}
	
	.service-card ul { 
	  font-size: 0.95rem; 
	}
  }
  
  /* Stagger animation for cards */
  .service-card:nth-child(1) {
	animation-delay: 0.1s;
  }
  
  .service-card:nth-child(2) {
	animation-delay: 0.2s;
  }
  
  .service-card:nth-child(3) {
	animation-delay: 0.3s;
  }
  
  @keyframes fadeInUp {
	from {
	  opacity: 0;
	  transform: translateY(30px);
	}
	to {
	  opacity: 1;
	  transform: translateY(0);
	}
  }
  
  /* Optional: allow smoother rendering for devices */
  @media (prefers-reduced-motion: no-preference) {
	.service-card { will-change: transform; }
  }

  /* REPLACE these rules in style.css */

/* Ensure grid items all stretch to equal height */
.services-grid {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	align-items: stretch;
  }
  
  /* Make each card fill its grid cell and use flex column layout */
  .service-card {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	background: #ffffff;
	border-radius: 16px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(11, 12, 20, 0.08);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	height: 100%;
	box-sizing: border-box;
	border: 1px solid rgba(75, 0, 130, 0.05);
	position: relative;
	overflow: hidden;
  }
  
  /* Keep lists below title and spaced properly */
  .service-card ul {
	margin-top: 15px;
	list-style: none;
	padding: 0;
	line-height: 1.9;
	color: #2f2f2f;
	font-size: 1rem;
  }
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Playfair+Display:wght@400;600;700&display=swap');
  
  /* Scoped styles for the EVOLVE about block (styles.css) */
.evolve-about {
	box-sizing: border-box;
	max-width: 1200px;
	margin: 0 auto;
	padding: clamp(30px, 5vw, 60px);
	color: #1b1b1f;
	font-family: "Poppins", "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
	background: transparent;
	animation: fadeIn 0.8s ease-out;
  }
  
  .evolve-about__wrap {
	display: grid;
	gap: 40px;
	grid-template-columns: 1fr;
	align-items: start;
  }
  
  /* Heading */
  .evolve-about__title {
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 700;
	font-size: clamp(24px, 4vw, 36px);
	margin: 0 0 10px 0;
	color: #4b0082;
	letter-spacing: -0.3px;
	animation: fadeInDown 0.8s ease-out;
  }
  
  .evolve-about__subtitle {
	margin: 0 0 25px 0;
	font-size: clamp(16px, 2vw, 18px);
	color: #5b4a7a;
	font-weight: 500;
	animation: fadeIn 1s ease-out 0.2s backwards;
  }
  
  /* Paragraphs */
  .evolve-about p {
	margin: 0 0 20px 0;
	line-height: 1.8;
	font-size: clamp(16px, 1.8vw, 18px);
	color: #2f2f2f;
	animation: fadeIn 1s ease-out 0.3s backwards;
  }
  
  /* Services highlight box */
  .evolve-about__services {
	margin-top: 20px;
	padding: 30px;
	border-radius: 15px;
	border: 2px solid rgba(75, 0, 130, 0.1);
	background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(249,250,251,0.9));
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
	transition: all 0.3s ease;
	animation: slideInRight 0.8s ease-out 0.4s backwards;
  }
  
  .evolve-about__services:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(75, 0, 130, 0.12);
	border-color: rgba(75, 0, 130, 0.2);
  }
  
  .evolve-about__services strong {
	display: block;
	margin-bottom: 15px;
	font-weight: 700;
	font-size: 1.3rem;
	color: #4b0082;
	font-family: 'Playfair Display', serif;
  }
  
  .evolve-about__services p {
	margin: 0;
	line-height: 1.8;
  }
  
  /* Two-column layout on larger screens */
  @media (min-width: 960px) {
	.evolve-about__wrap {
	  grid-template-columns: 1fr 450px;
	  gap: clamp(30px, 4vw, 50px);
	}
	.evolve-about__services {
	  position: sticky;
	  top: 100px;
	  height: fit-content;
	}
  }
  
  /* Small visual accents */
  .evolve-about__accent {
	display: inline-block;
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, #4b0082, #6c44d9, #b66bff);
	border-radius: 3px;
	margin: 0 0 20px 0;
	animation: expandWidth 1s ease-out 0.5s backwards;
  }
  
  @media (max-width: 768px) {
	.evolve-about {
	  padding: clamp(20px, 4vw, 40px);
	}
	
	.evolve-about__services {
	  padding: 20px;
	}
  }

 /* Tiny footer — responsive & theme-matching */
.tiny-footer {
	background: linear-gradient(135deg, #4b0082 0%, #6c44d9 100%);
	color: #f4eaff;
	width: 100%;
	padding: 20px 15px;
	box-sizing: border-box;
	font-size: 0.95rem;
	border-top: 2px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
	margin-top: auto;
  }
  
  .tiny-footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	gap: 15px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	text-align: center;
  }
  
  /* text and link styles */
  .tiny-footer .tf-copy,
  .tiny-footer .tf-credit { 
	margin: 0; 
	line-height: 1.5; 
  }
  
  .tiny-footer .tf-link {
	color: #ffd7ff;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
  }
  
  .tiny-footer .tf-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: #ffd7ff;
	transition: width 0.3s ease;
  }
  
  .tiny-footer .tf-link:hover {
	color: white;
  }
  
  .tiny-footer .tf-link:hover::after {
	width: 100%;
  }
  
  /* smaller screens */
  @media (max-width: 480px) {
	.tiny-footer { 
	  padding: 15px 10px; 
	  font-size: 0.88rem; 
	}
	.tiny-footer-inner { 
	  gap: 8px; 
	}
  }
  
  .footer-space-down {
	margin-top: 60px;
  }
  
  @media (max-width: 768px) {
	.footer-space-down {
	  margin-top: 40px;
	}
	
	.services-section {
	  padding: 80px 20px 20px;
	  min-height: auto;
	}
  }
  


  /* Home hero heading + tagline overlay (responsive, theme-matching) */
#home {
	position: relative;
	height: 100vh;
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  /* background image kept as <img> for your current setup */
  .hero-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform-origin: center;
	will-change: transform;
	animation: slowZoom 20s ease-in-out infinite alternate;
  }
  
  @keyframes slowZoom {
	from {
	  transform: scale(1);
	}
	to {
	  transform: scale(1.05);
	}
  }
  
  /* subtle purple overlay to match theme + improve contrast */
  .hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(44, 0, 63, 0.5), rgba(44, 0, 63, 0.35));
	z-index: 1;
	animation: fadeIn 1.5s ease-out;
  }
  
  /* centered content above the image */
  .hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0 30px;
	pointer-events: none;
	animation: fadeInUp 1.2s ease-out;
  }
  
  /* Main heading — elegant serif */
  .hero-title {
	margin: 0;
	font-family: "Playfair Display", serif;
	color: #fff;
	font-size: clamp(2.5rem, 7vw, 5rem);
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
	animation: fadeInDown 1s ease-out;
  }
  
  /* small decorative accent under the heading */
  .hero-title::after {
	content: "";
	display: block;
	width: 100px;
	height: 4px;
	margin: 20px auto 0;
	border-radius: 3px;
	background: linear-gradient(90deg, #ffd7ff, #b66bff);
	animation: expandWidth 1.2s ease-out 0.5s backwards;
  }
  
  /* Tagline — clean sans */
  .hero-tagline {
	margin: 20px 0 0;
	font-family: "Poppins", "Segoe UI", Roboto, Arial, sans-serif;
	color: #f7e9ff;
	font-size: clamp(1.1rem, 2.5vw, 1.6rem);
	font-weight: 300;
	letter-spacing: 0.3px;
	text-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
	animation: fadeIn 1.5s ease-out 0.3s backwards;
  }
  
  /* keep content slightly lower so the fixed nav doesn't overlap it */
  @media (min-width: 768px) {
	.hero-content { 
	  transform: translateY(5%); 
	}
  }
  
  /* smaller screens: tighten spacing */
  @media (max-width: 768px) {
	.hero-content {
	  padding: 0 20px;
	}
	
	.hero-title::after { 
	  width: 80px; 
	  height: 3px; 
	  margin-top: 15px; 
	}
  }
  
  @media (max-width: 480px) {
	.hero-title::after { 
	  width: 64px; 
	  margin-top: 12px; 
	}
  }
  
  


/* ===========================
   WhatsApp Floating Button
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: whatsappPulse 2s infinite;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #333;
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 6px 40px rgba(37, 211, 102, 0.8), 0 0 0 15px rgba(37, 211, 102, 0.1);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
  
  .whatsapp-tooltip {
    display: none;
  }
}

/* WhatsApp Contact Button in details card */
.whatsapp-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #128C7E, #075E54);
}

.whatsapp-contact-btn svg {
  width: 20px;
  height: 20px;
  fill: white;
}

/* ===========================
   Enhanced Contact Form with WhatsApp
   =========================== */
.contact-form-modern {
  background: linear-gradient(145deg, #ffffff, #f8f5ff);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(75, 0, 130, 0.12);
  max-width: 600px;
  margin: 30px auto;
  animation: fadeInUp 0.8s ease-out;
  border: 1px solid rgba(75, 0, 130, 0.08);
}

.contact-form-modern h3 {
  color: #4b0082;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
  text-align: center;
}

.contact-form-modern .form-subtitle {
  color: #5b4a7a;
  text-align: center;
  margin-bottom: 30px;
  font-size: 1rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #3a0066;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px 18px;
  border: 2px solid #e8e0f0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  background: white;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #6c44d9;
  box-shadow: 0 0 0 4px rgba(108, 68, 217, 0.1);
  transform: translateY(-2px);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.whatsapp-submit-btn {
  width: 100%;
  padding: 16px 30px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.4s ease;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.3);
  font-family: 'Poppins', sans-serif;
}

.whatsapp-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #128C7E, #075E54);
}

.whatsapp-submit-btn svg {
  width: 24px;
  height: 24px;
  fill: white;
}

/* ===========================
   Modern Map Styling
   =========================== */
.map-wrapper {
  max-width: 1200px;
  margin: 40px auto 60px;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(75, 0, 130, 0.15);
  background: linear-gradient(135deg, #4b0082, #6c44d9);
  transition: all 0.4s ease;
  animation: fadeIn 1s ease-out 0.3s backwards;
  position: relative;
}

.map-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #4b0082, #6c44d9, #b66bff, #ffd7ff);
  z-index: 1;
}

.map-wrapper:hover {
  box-shadow: 0 20px 60px rgba(75, 0, 130, 0.25);
  transform: translateY(-5px);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  aspect-ratio: 16 / 9;
  filter: saturate(1.1) contrast(1.05);
}

/* ===========================
   Enhanced Footer
   =========================== */
.tiny-footer {
  background: linear-gradient(135deg, #2d0050 0%, #4b0082 50%, #6c44d9 100%);
  color: #f4eaff;
  width: 100%;
  padding: 30px 20px;
  box-sizing: border-box;
  font-size: 0.95rem;
  border-top: 3px solid #b66bff;
  box-shadow: 0 -10px 40px rgba(75, 0, 130, 0.3);
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.tiny-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  animation: footerShimmer 3s ease-in-out infinite;
}

@keyframes footerShimmer {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(50%);
  }
}

.tiny-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  position: relative;
  z-index: 1;
}

.tiny-footer .tf-copy,
.tiny-footer .tf-credit { 
  margin: 0; 
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.tiny-footer .tf-link {
  color: #ffd7ff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding: 2px 0;
}

.tiny-footer .tf-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffd7ff, #b66bff);
  transition: width 0.3s ease;
}

.tiny-footer .tf-link:hover {
  color: white;
  text-shadow: 0 0 10px rgba(255,215,255,0.5);
}

.tiny-footer .tf-link:hover::after {
  width: 100%;
}

/* ===========================
   Additional Animation Effects
   =========================== */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Enhance page title animations */
.section-title {
  animation: fadeInScale 0.8s ease-out;
}

.section-title::after {
  animation: expandWidth 1.2s ease-out 0.3s backwards;
}

/* Service cards enhanced animation */
.service-card {
  animation: slideInUp 0.8s ease-out backwards;
}

/* Smooth scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  display: block;
  width: 25px;
  height: 25px;
  border-bottom: 3px solid rgba(255,255,255,0.8);
  border-right: 3px solid rgba(255,255,255,0.8);
  transform: rotate(45deg);
  animation: scrollDown 1.5s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-15px);
  }
  60% {
    transform: translateX(-50%) translateY(-8px);
  }
}

@keyframes scrollDown {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Enhanced About page animations */
.evolve-about {
  animation: fadeInScale 0.8s ease-out;
}

.evolve-about__services {
  position: relative;
  overflow: hidden;
}

.evolve-about__services::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(75, 0, 130, 0.05), transparent);
  animation: shimmerSlide 3s ease-in-out infinite;
}

@keyframes shimmerSlide {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Contact details card enhancement */
.contact-details {
  position: relative;
  overflow: hidden;
}

.contact-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4b0082, #6c44d9, #b66bff);
  border-radius: 4px 4px 0 0;
}

/* ===========================
   Mobile View Improvements
   =========================== */
@media (max-width: 768px) {
  .tiny-footer {
    padding: 25px 15px;
    font-size: 0.9rem;
  }
  
  .tiny-footer-inner {
    flex-direction: column;
    gap: 12px;
  }
  
  .map-wrapper {
    margin: 30px 15px 40px;
    border-radius: 15px;
  }
  
  .contact-form-modern {
    padding: 25px 20px;
    margin: 20px 15px;
  }
  
  .gallery-item {
    padding: 3px;
  }
  
  .gallery-item::before {
    animation-duration: 6s;
  }
}

@media (max-width: 480px) {
  .tiny-footer {
    padding: 20px 12px;
    font-size: 0.85rem;
  }
  
  .contact-form-modern h3 {
    font-size: 1.5rem;
  }
  
  .whatsapp-submit-btn {
    font-size: 1rem;
    padding: 14px 25px;
  }
}

/* ===========================
   Performance Optimizations
   =========================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* GPU acceleration for smooth animations */
.whatsapp-float,
.gallery-item,
.service-card,
.contact-details,
.contact-form-modern {
  will-change: transform;
  backface-visibility: hidden;
}

/* Lazy load optimization hint */
img {
  content-visibility: auto;
}

