/**
 * Molehill Creations - Modern CSS
 * Updated for modern browsers with CSS Grid, Flexbox, and Custom Properties
 */

/* CSS Variables converted to regular CSS for better browser compatibility */

/* Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #D3C7AC;
  min-height: 100vh;
}

/* Typography - More Natural Variations */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.5em;
  /* Add slight letter-spacing variations for more character */
  letter-spacing: -0.01em;
}

/* Make some headings feel more handcrafted */
h2 {
  letter-spacing: -0.02em;
  font-weight: 600; /* Slightly less bold */
}

h3 {
  font-weight: 500;
  letter-spacing: 0.005em;
}

a {
  color: #D8D97C;
  text-decoration: none;
  transition: color 0.3s ease;
  /* Add slight variations to link colors for more personality */
  position: relative;
}

a:hover {
  color: #E8E9AC;
  /* Add a subtle underline effect that feels hand-drawn */
}

a:hover::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #E8E9AC, transparent);
  opacity: 0.7;
  transform: rotate(0.2deg);
}

/* Layout Components */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}

/* Mobile-only utilities - hide on desktop */
.mobile-only {
  display: none;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* Hero Section */
#lawn {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  background-color: #33461A;
  overflow: hidden;
}

#sky-bg {
  position: absolute;
  bottom: 130px;
  background-color: #395d9e;
  height: 100%;
  width: 100%;
  overflow: hidden;
}



/* Pixel Art Cloud Canvas Container */
#pixel-clouds-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

#grass-light {
  position: absolute;
  bottom: 140px;
  background: transparent url('../img/grass-light.png') repeat-x scroll 10% 10%;
  width: 100%;
  height: 200px;
  z-index: 2;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

#mushroom {
  background: transparent url('../img/mushroom.png') no-repeat scroll bottom left;
  position: absolute;
  bottom: 271px;
  height: 120px;
  right: 0;
  width: 1480px;
  z-index: 1;
}

#grass-bg {
  position: absolute;
  bottom: 44px;
  background: transparent url('../img/grass-bg.png') repeat-x scroll bottom center;
  height: 328px;
  width: 100%;
  z-index: 3;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

#grass-hill {
  position: absolute;
  bottom: 190px;
  background: transparent url('../img/grass-hill.png') no-repeat scroll bottom center;
  height: 328px;
  width: 100%;
  z-index: 4;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

#grass {
  position: absolute;
  bottom: 44px;
  background: transparent url('../img/grass-fade.png') no-repeat scroll bottom center;
  height: 480px;
  width: 100%;
  overflow: hidden;
  z-index: 6;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

#moley {
  width: 100%;
  height: 308px;
  position: absolute;
  bottom: 175px;
  text-align: center;
  z-index: 7;
}

#moley img {
  height: 100%;
  width: auto;
}



#tag {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  position: absolute;
  text-align: center;
  width: 100%;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  bottom: 30px;
  padding: 0 15px;
  font-weight: 300;
  z-index: 7;
}

/* Main Content */
#main {
  background: linear-gradient(to bottom, #3d2b1f 0%, #2a1f1a 50%, #1a1410 100%);
  background-color: #2a1f1a;
  min-height: 100vh;
  width: 100%;
  position: relative;
  box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.6);
  /* overflow removed to allow navigation visibility */
}

/* Fossil Objects */
.fossil {
  position: absolute;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
  transform-origin: center center;
  transition: opacity 0.5s ease;
  color: rgba(101, 67, 33, 0.8);
  font-size: 5rem;
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.3),
    -1px -1px 2px rgba(76, 51, 26, 0.6);
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Fossil visibility on scroll */
.fossil.visible {
  opacity: 0.25;
}

/* Navigation */
#nav {
  z-index: 1000;
  position: absolute;
  background: rgba(35, 29, 25, 0.9) url('../img/grass-shadow.png') no-repeat scroll top center;
  height: 60px;
  width: 100%;
  top: -60px;
  left: 0;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  z-index: 1000;
}

#nav.positionFixed {
  position: fixed;
  top: 0;
}

#navWrap {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 920px;
  height: 100%;
}

#nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

#nav ul li {
  height: 50px;
}

#nav a {
  color: #D3C7AC;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  text-shadow: 1px 1px 1px #000;
  padding: 15px 15px 10px 15px;
  display: block;
  transition: all 0.3s ease;
  border-radius: 4px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#nav a:hover,
#nav a.selected {
  background-color: rgba(56, 48, 41, 0.8);
  color: #ffffff;
}

#nav a + a {
  margin-left: 20px;
}

#nav a span {
  color: #AE967D;
  font-size: 0.7rem;
  text-transform: lowercase;
  font-style: italic;
  display: block;
}

#nav #logoTag a {
  padding: 10px;
}

/* Content Layout */
#content {
	max-width: 850px;
	margin: 0 auto;
	padding: 70px 2% 60px;
	position: relative;
}

#content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 30px;
	background: linear-gradient(to bottom, 
		rgba(0, 0, 0, 0.8) 0%, 
		rgba(61, 43, 31, 0.4) 50%, 
		transparent 100%);
	pointer-events: none;
	z-index: 1;
}

/* Toast notifications */
#toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  background: rgba(35, 29, 25, 0.95);
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2000;
}

#toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

#toast.success { background: rgba(52, 199, 89, 0.95); }
#toast.error { background: rgba(255, 59, 48, 0.95); }

/* Inline form message (existing) */
#contact #contactFormMessage {
  display: none;
}

/* Invalid field highlight */
#contact input.invalid,
#contact select.invalid,
#contact textarea.invalid {
  outline: none;
  border: 2px solid #ff6b6b !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

/* Submit button loading state */
#contact button[type="submit"].loading {
  position: relative;
  opacity: 0.8;
  cursor: progress;
}

#contact button[type="submit"].loading::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 12px;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  border-top-color: #fff;
  animation: spinner 0.8s linear infinite;
}

@keyframes spinner {
  to { transform: rotate(360deg); }
}

/* Profile Photos */
.profile-photo {
	border-radius: 8px;
	box-shadow: 
		0 4px 15px rgba(0, 0, 0, 0.3),
		inset 0 1px 2px rgba(255, 255, 255, 0.1);
	margin: 20px 0;
}

#about .profile-photo {
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
}

#chiefMole {
	width: 100px;
	height: 100px;
	object-fit: cover;
	float: left;
	margin-right: 15px;
	margin-bottom: 10px;
}

.page {
  padding-top: 70px;
  max-width: 100%;
  position: relative;
}

/* Progressive underground depth effect - removed for cleaner design */

.page h2 {
  font-weight: 300;
  color: #D3B599;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: -0.03em;
  text-shadow: 
    1px 1px 1px #000,
    0 0 10px rgba(139, 115, 85, 0.5);
  margin-bottom: 20px;
  position: relative;
  z-index: 10; /* Ensure headers appear above fossils */
}



.page h2 span {
  font-size: 0.6em;
  text-transform: lowercase;
  font-weight: 400;
  opacity: 0.8;
  margin-left: 0.5em;
}

.page a {
  color: #D8D97C;
}

.page a:hover {
  color: #D9D0B7;
  text-decoration: underline;
}

.page .content {
  padding: 0;
  margin: 20px 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #ffffff;
  position: relative;
  z-index: 10; /* Ensure content appears above fossils */
}



.page .content p {
  margin-bottom: 1em;
}

.page .content h3 {
  text-shadow: 1px 1px 1px #4F3A2B;
  font-size: 1.5rem;
  margin-bottom: 0.5em;
  color: #8b7355;
  position: relative;
}

.page .content h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #8b7355, transparent);
}

/* Remove decorative line from about section h3 */
.about-content h3::after {
  display: none;
}

.page .content h5 {
  text-shadow: 1px 1px 1px #4F3A2B;
  margin-top: 0.5em;
  font-size: 1rem;
}

/* Expertise Section - now using new revolutionary design */

/* Services Section */

#services .service {
  padding-top: 20px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}

#services .service .item:last-child {
  max-width: 250px;
}

#services .service .item img {
  width: 100%;
  height: auto;
  margin-top: 20px;
}

#services .service .item ul {
  margin: 10px 0;
  padding-left: 20px;
}

#services .service .item ul li {
  margin-bottom: 5px;
}

/* About Section */
.about-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.about-content .profile-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 30px;
  display: block;
  border: 3px solid #D8D97C;
}

.about-content h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 30px;
  color: #D8D97C;
  text-shadow: 1px 1px 1px #4F3A2B;
}

.about-content blockquote {
  font-style: italic;
  font-size: 1.2rem;
  padding: 30px;
  margin: 30px 0;
  border-left: 4px solid #D8D97C;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  line-height: 1.6;
  color: #E8E2D5;
}

.about-content p {
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 1.1rem;
}

/* Contact Section */
#contact .item {
  width: 60%;
  float: left;
  min-height: 200px;
  line-height: 1.8;
}

#contact .item + .item {
  width: 33%;
  border-left: 1px solid rgba(174, 151, 122, 0.5);
  padding-left: 2%;
  margin-left: 2%;
}

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

#contact label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #ffffff;
}

#contact input,
#contact select,
#contact textarea {
  background-color: rgba(174, 151, 122, 0.8);
  border: 2px solid transparent;
  color: #ffffff;
  padding: 12px;
  border-radius: 6px;
  font-family: 'Inter', inherit;
  font-size: 0.9rem;
  width: 100%;
  transition: all 0.3s ease;
}

#contact input:focus,
#contact select:focus,
#contact textarea:focus {
  outline: none;
  background-color: rgba(174, 151, 122, 1);
  border-color: #D8D97C;
  box-shadow: 0 0 0 3px rgba(216, 217, 124, 0.2);
}

#contact input::placeholder,
#contact textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

#contact textarea {
  height: 120px;
  resize: vertical;
  min-height: 80px;
}

#contact select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

#contact button {
  padding: 12px 24px;
  background: linear-gradient(145deg, #8B755B, #75563F);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#contact button:hover {
  background: linear-gradient(145deg, #9A8468, #8B755B);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#contact button:active {
  transform: translateY(0);
}

#contact #contactFormMessage {
  display: none;
  color: #D8D97C;
  margin-top: 15px;
  padding: 12px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.3);
  border-left: 4px solid #D8D97C;
}

/* Form validation styles */
#contact input:invalid:not(:focus):not(:placeholder-shown),
#contact textarea:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #ff6b6b;
}

#contact input:valid:not(:focus):not(:placeholder-shown),
#contact textarea:valid:not(:focus):not(:placeholder-shown) {
  border-color: #51cf66;
}

/* Enhanced Contact Section */
.contact-hero {
	text-align: center;
	margin-bottom: 3rem;
}

.contact-intro {
	max-width: 600px;
	margin: 0 auto;
	padding: 2rem;
	background: linear-gradient(135deg, rgba(216, 217, 124, 0.1), rgba(174, 151, 122, 0.1));
	border-radius: 20px;
	border: 1px solid rgba(216, 217, 124, 0.3);
	position: relative;
	overflow: hidden;
}

.contact-intro::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(216, 217, 124, 0.1) 0%, transparent 70%);
	transform: rotate(45deg);
	z-index: 0;
}

.contact-intro > * {
	position: relative;
	z-index: 1;
}

.contact-intro h3 {
	font-size: 2rem;
	color: #D8D97C;
	margin-bottom: 1rem;
	font-weight: 600;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-intro p {
	font-size: 1.2rem;
	color: #D3C7AC;
	margin: 0;
	line-height: 1.6;
}

.contact-methods {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.contact-card {
	display: flex;
	align-items: flex-start;
	padding: 2rem;
	background: linear-gradient(135deg, rgba(61, 43, 31, 0.6), rgba(42, 31, 26, 0.8));
	border-radius: 20px;
	border: 1px solid rgba(216, 217, 124, 0.2);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.contact-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, transparent, #D8D97C, transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.contact-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
	background: linear-gradient(135deg, rgba(61, 43, 31, 0.8), rgba(42, 31, 26, 0.9));
}

.contact-card:hover::before {
	opacity: 1;
}

.email-card:hover {
	border-color: rgba(52, 199, 89, 0.4);
}

.linkedin-card:hover {
	border-color: rgba(0, 119, 181, 0.4);
}

.contact-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #8B755B, #75563F);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 1.5rem;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.contact-icon i {
	font-size: 1.5rem;
	color: #ffffff;
}

.contact-card:hover .contact-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.email-card:hover .contact-icon {
	background: linear-gradient(135deg, #34C759, #30B855);
}

.linkedin-card:hover .contact-icon {
	background: linear-gradient(135deg, #0077B5, #006699);
}

.contact-details {
	flex: 1;
}

.contact-details h4 {
	font-size: 1.3rem;
	color: #D8D97C;
	margin: 0 0 0.5rem 0;
	font-weight: 600;
}

.contact-details p {
	color: #AE967D;
	margin: 0 0 1rem 0;
	font-size: 0.95rem;
	line-height: 1.5;
}

.contact-link {
	color: #D3C7AC;
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 500;
	transition: all 0.3s ease;
	border-bottom: 2px solid transparent;
}

.contact-link:hover {
	color: #D8D97C;
	border-bottom-color: #D8D97C;
}

.contact-footer {
	text-align: center;
	padding: 2rem;
	background: rgba(174, 151, 122, 0.1);
	border-radius: 15px;
	border: 1px solid rgba(174, 151, 122, 0.2);
}

.location-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(216, 217, 124, 0.2);
	color: #D8D97C;
	padding: 0.75rem 1.5rem;
	border-radius: 25px;
	margin-bottom: 1rem;
	font-weight: 500;
	border: 1px solid rgba(216, 217, 124, 0.3);
}

.location-badge i {
	font-size: 0.9rem;
}

.availability-note {
	color: #D3C7AC;
	margin: 0;
	font-style: italic;
	font-size: 1.1rem;
	line-height: 1.6;
}

/* Responsive adjustments for contact section */
@media (max-width: 768px) {
	.contact-methods {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.contact-card {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}
	
	.contact-icon {
		margin: 0 auto 1rem auto;
	}
	
	.contact-details {
		text-align: center;
		width: 100%;
	}
	
	.contact-intro h3 {
		font-size: 1.5rem;
	}
	
	.contact-intro p {
		font-size: 1rem;
	}
}

/* Keyboard navigation styles */
body.keyboard-navigation *:focus {
  outline: 3px solid #D8D97C;
  outline-offset: 2px;
}

/* Accessibility improvements */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Focus management for skip links */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #D8D97C;
  color: #000;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 2000;
}

.skip-link:focus {
  top: 6px;
}

/* Footer */
footer {
  z-index: 10;
  position: relative;
  background: 
    radial-gradient(ellipse at center bottom, 
      rgba(255, 100, 50, 0.8) 0%, 
      rgba(220, 50, 20, 0.7) 20%, 
      rgba(180, 30, 10, 0.6) 40%, 
      rgba(120, 20, 5, 0.5) 60%, 
      rgba(60, 10, 2, 0.4) 80%, 
      rgba(20, 5, 0, 0.9) 100%),
    linear-gradient(45deg, 
      rgba(255, 80, 40, 0.3) 0%, 
      transparent 25%, 
      rgba(200, 40, 20, 0.2) 50%, 
      transparent 75%, 
      rgba(150, 30, 15, 0.3) 100%),
    linear-gradient(to bottom, 
      rgba(80, 20, 10, 0.8) 0%, 
      rgba(40, 10, 5, 0.9) 50%, 
      rgba(20, 5, 2, 0.95) 100%);
  border-top: 3px solid rgba(255, 120, 60, 0.6);
  box-shadow: 
    inset 0 10px 30px rgba(255, 50, 20, 0.3),
    inset 0 -5px 15px rgba(0, 0, 0, 0.8),
    0 -5px 20px rgba(200, 40, 20, 0.4),
    0 -10px 40px rgba(0, 0, 0, 0.6);
  text-shadow: 
    rgba(0, 0, 0, 0.8) 0 -1px 0,
    rgba(255, 100, 50, 0.3) 0 1px 2px;
  padding: 40px 0 20px;
  min-height: 250px;
  animation: magmaGlow 4s ease-in-out infinite alternate;
}

@keyframes magmaGlow {
  0% {
    box-shadow: 
      inset 0 10px 30px rgba(255, 50, 20, 0.3),
      inset 0 -5px 15px rgba(0, 0, 0, 0.8),
      0 -5px 20px rgba(200, 40, 20, 0.4),
      0 -10px 40px rgba(0, 0, 0, 0.6);
  }
  100% {
    box-shadow: 
      inset 0 10px 30px rgba(255, 80, 40, 0.4),
      inset 0 -5px 15px rgba(0, 0, 0, 0.8),
      0 -5px 20px rgba(255, 60, 30, 0.5),
      0 -10px 40px rgba(0, 0, 0, 0.6);
  }
}

footer .content {
  max-width: 900px;
  color: rgba(255, 220, 180, 0.9);
  margin: 0 auto;
  font-size: 0.8rem;
  line-height: 1.6;
  padding: 0 20px;
}

footer .content h3 {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 30px 0;
  margin: 30px 0;
  border-bottom: 1px solid rgba(255, 120, 60, 0.3);
  border-top: 1px solid rgba(255, 120, 60, 0.3);
  color: rgba(255, 240, 200, 0.95);
  text-shadow: 
    rgba(0, 0, 0, 0.8) 0 -1px 0,
    rgba(255, 120, 60, 0.4) 0 2px 4px;
}

footer .item {
  width: 46%;
  float: left;
  min-height: 200px;
  margin-bottom: 20px;
}

footer .item + .item {
  border-left: 1px solid rgba(255, 120, 60, 0.2);
  padding-left: 2%;
  margin-left: 2%;
}

footer .item h4 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 15px;
}

footer .item p {
  padding-bottom: 8px;
}

footer .item img {
  padding-right: 15px;
  float: left;
  border-radius: 6px;
}

/* Single footer item styling for desktop */
footer .item.single-item {
  width: 100%;
  float: none;
  text-align: center;
  border: none;
  padding: 0;
  margin: 0 auto;
}

footer #copyright {
  text-align: center;
  color: rgba(255, 180, 120, 0.7);
  font-size: 0.75rem;
  margin-top: 30px;
  clear: both;
}

footer #bottomLogo {
	text-align: center;
}

/* Service images styling */
.service img {
	max-width: 200px;
	height: auto;
	border-radius: 8px;
	box-shadow: 
		0 4px 15px rgba(0, 0, 0, 0.3),
		inset 0 1px 2px rgba(255, 255, 255, 0.1);
	border: 2px solid #8b7355;
	background: rgba(139, 115, 85, 0.1);
	padding: 20px;
	margin: 20px 0;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* Responsive Design */
@media (max-width: 900px) {
  #content {
    width: 97%;
  }
  
  footer .content {
    width: 97%;
  }
  
  #nav a span {
    display: none;
  }
}

@media (max-width: 768px) {
  #tag {
    font-size: 1.8rem;
    bottom: 130px;
  }
  
  #lawn {
    min-height: 400px;
  }
  
  #moley {
    height: 150px;
  }
  
  #mushroom {
    display: none;
  }
  
  #grass {
    bottom: -56px;
  }
  
  #grass-light {
    bottom: 134px;
  }
  
  #grass-bg {
    bottom: -56px;
  }
  
  #nav a {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 0.7rem;
    height: 50px;
  }
  
  #services .service {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  #services .service .item:last-child {
    max-width: none;
  }
  
  #about img {
    float: none;
    display: block;
    margin: 20px auto;
  }
  
  .fossil {
    opacity: 0.12;
    font-size: 3.5rem;
  }
  
  .fossil.visible {
    opacity: 0.18;
  }
}

@media (max-width: 550px) {
  #nav #logoTag {
    position: absolute;
    top: -380px;
    left: 0;
  }
  
  #tag {
    padding-left: 5px;
    bottom: 105px;
  }
  
  /* Improve hero tagline on mobile with better line height */
  #tag br {
    display: block;
    line-height: 1.2;
  }
  
  .page h2 {
    font-size: 1.4rem;
  }
  
  .page h2 span {
    font-size: 1rem;
  }
  
  .page .content {
    padding: 20px;
  }
  
  .page .content h3 {
    font-size: 1.2rem;
  }
  

  
  #contact .item {
    width: 100% !important;
    float: none;
  }
  
  #contact .item + .item {
    margin-left: 0;
    padding-left: 0;
    padding-top: 20px;
    margin-top: 20px;
    border-left: 0;
    border-top: 1px solid rgba(174, 151, 122, 0.5);
  }
  
  footer .item {
    width: auto;
    float: none;
    min-height: 0;
    margin-bottom: 20px;
  }
  
  footer .item + .item {
    border-top: 1px solid rgba(255, 120, 60, 0.2);
    border-left: none;
    padding-left: 0;
    padding-top: 20px;
    margin-left: 0;
  }
  
  footer .item img {
    width: 80px;
  }
  
  /* Single footer item styling */
  footer .item.single-item {
    width: 100%;
    float: none;
    text-align: center;
    border: none;
    padding: 0;
    margin: 0;
  }
  
  /* Better mobile text formatting for footer */
  footer .item h4 {
    font-size: 1.1rem;
    line-height: 1.3;
    word-break: break-word;
  }
  
  /* Improve paragraph text wrapping on mobile */
  footer .item p {
    font-size: 0.9rem;
    line-height: 1.5;
    hyphens: auto;
    word-break: break-word;
  }
}

/* Print Styles */
@media print {
	* {
		background: transparent !important;
		color: black !important;
		text-shadow: none !important;
		filter: none !important;
		-ms-filter: none !important;
	}
	
	a,
	a:visited {
		text-decoration: underline;
	}
	
	a[href]:after {
		content: " (" attr(href) ")";
	}
	
	abbr[title]:after {
		content: " (" attr(title) ")";
	}
	
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content: "";
	}
	
	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}
	
	thead {
		display: table-header-group;
	}
	
	tr,
	img {
		page-break-inside: avoid;
	}
	
	img {
		max-width: 100% !important;
	}
	
	@page {
		margin: 0.5in;
	}
	
	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}
	
	h2,
	h3 {
		page-break-after: avoid;
	}
}

/* Revolutionary Content Design */

/* Hero Statement Section */
.statement-wrapper {
	text-align: center;
	padding: 4rem 2rem;
	background: linear-gradient(135deg, rgba(61, 43, 31, 0.6), rgba(42, 31, 26, 0.8));
	border-radius: 20px;
	margin-bottom: 3rem;
}

.mega-title {
	font-size: clamp(2.5rem, 6vw, 4rem);
	color: #D8D97C;
	font-weight: 400;
	margin-bottom: 3rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	line-height: 1.1;
	/* Add slight irregularity to make it feel less AI-perfect */
	letter-spacing: -0.03em;
	transform: rotate(-0.2deg);
	position: relative;
}

/* Add a subtle handwritten-style underline */
.mega-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%) rotate(0.3deg);
	width: 60%;
	height: 3px;
	background: linear-gradient(90deg, transparent, #D8D97C, transparent);
	opacity: 0.6;
	border-radius: 2px;
}

.statement-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
	transition: opacity 0.3s ease;
	/* Slight asymmetry to feel more human */
	transform: rotate(-0.1deg);
}

.statement-item {
	background: rgba(216, 217, 124, 0.1);
	padding: 2rem;
	border-radius: 15px;
	border: 1px solid rgba(216, 217, 124, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
	position: relative;
	overflow: hidden;
}

.statement-item:hover {
	transform: translateY(-5px) scale(1.02);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
	background: rgba(216, 217, 124, 0.15);
}

/* Enhanced glow effect on hover */
.statement-item:hover::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, #D8D97C, #4CAF50, #2196F3, #D8D97C);
	border-radius: 17px;
	z-index: -1;
	opacity: 0.3;
	animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
	0%, 100% { opacity: 0.3; }
	50% { opacity: 0.6; }
}

/* Add slight individual rotations for organic feel */
.statement-item:nth-child(1) {
	transform: rotate(0.3deg);
}

.statement-item:nth-child(2) {
	transform: rotate(-0.2deg);
}

.statement-item:nth-child(3) {
	transform: rotate(0.4deg);
}


.statement-number {
	font-size: 3rem;
	font-weight: 600;
	color: #D8D97C;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	/* Add character variations to numbers */
	letter-spacing: -0.05em;
	transition: all 0.3s ease;
	position: relative;
}

/* Animated counting state */
.statement-number.counting {
	animation: numberPulse 0.5s ease-in-out;
}

@keyframes numberPulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.1); color: #4CAF50; }
	100% { transform: scale(1); }
}

/* Add subtle glow when animating */
.statement-number.counting::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle, rgba(216, 217, 124, 0.3) 0%, transparent 70%);
	border-radius: 50%;
	z-index: -1;
	animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
	0%, 100% { opacity: 0; transform: scale(0.8); }
	50% { opacity: 1; transform: scale(1.2); }
}

/* Completion celebration effect */
.statement-number.celebration {
	animation: celebrate 0.8s ease-out;
}

@keyframes celebrate {
	0% { transform: scale(1); }
	20% { transform: scale(1.15) rotate(2deg); }
	40% { transform: scale(1.05) rotate(-1deg); }
	60% { transform: scale(1.1) rotate(1deg); }
	80% { transform: scale(1.02) rotate(-0.5deg); }
	100% { transform: scale(1) rotate(0deg); }
}

/* Add sparkle effect for completed numbers */
.statement-number.celebration::before {
	content: '✨';
	position: absolute;
	top: -10px;
	right: -10px;
	font-size: 1rem;
	animation: sparkleFloat 1s ease-out;
	pointer-events: none;
}

@keyframes sparkleFloat {
	0% { opacity: 0; transform: translateY(0) scale(0.5); }
	50% { opacity: 1; transform: translateY(-10px) scale(1); }
	100% { opacity: 0; transform: translateY(-20px) scale(0.8); }
}

/* Make each number feel slightly different */
.statement-item:nth-child(1) .statement-number {
	font-weight: 700;
	transform: rotate(-1deg);
}

.statement-item:nth-child(2) .statement-number {
	font-weight: 500;
	transform: rotate(0.8deg);
	font-style: italic;
}

.statement-item:nth-child(3) .statement-number {
	font-weight: 800;
	transform: rotate(-0.5deg) scale(1.05);
}

.statement-text {
	color: #D3C7AC;
	font-size: 1.1rem;
	font-weight: 500;
}

.statement-tagline {
	font-size: 1.3rem;
	color: #D3C7AC;
	font-style: italic;
	margin-top: 2rem;
	opacity: 0.9;
}

/* Expertise Flow Layout */
.expertise-flow {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 3rem;
	margin: 3rem 0;
}

.expertise-primary {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.expertise-block {
	background: linear-gradient(135deg, rgba(61, 43, 31, 0.6), rgba(42, 31, 26, 0.8));
	border-radius: 20px;
	padding: 2.5rem;
	border: 1px solid rgba(216, 217, 124, 0.2);
	position: relative;
	overflow: hidden;
}

.expertise-block::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(216, 217, 124, 0.1) 0%, transparent 70%);
	transform: rotate(45deg);
	z-index: 0;
}

.expertise-block > * {
	position: relative;
	z-index: 1;
}

.ai-block {
	border-left: 4px solid #4CAF50;
}

.development-block {
	border-left: 4px solid #2196F3;
}

.block-header {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.block-icon {
	font-size: 2.5rem;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.block-header h3 {
	color: #D8D97C;
	font-size: 1.8rem;
	margin: 0;
	font-weight: 600;
}

.block-content p {
	color: #D3C7AC;
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 2rem;
}

.tech-flow {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1.5rem;
}

.tech-bubble {
	background: rgba(216, 217, 124, 0.2);
	color: #D8D97C;
	padding: 0.5rem 1rem;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 500;
	border: 1px solid rgba(216, 217, 124, 0.3);
	transition: all 0.3s ease;
	position: relative;
}

/* Add random slight rotations to tech bubbles for organic feel */
.tech-bubble:nth-child(odd) {
	transform: rotate(0.8deg) translateY(-1px);
	margin-left: 2px;
}

.tech-bubble:nth-child(even) {
	transform: rotate(-0.4deg) translateY(0.5px);
	margin-right: 1px;
}

.tech-bubble:nth-child(3n) {
	transform: rotate(0.6deg) translateY(-0.5px);
	margin-left: -1px;
}

.tech-bubble:nth-child(7n) {
	transform: rotate(-0.8deg) translateY(1px) scale(0.95);
}


.expertise-secondary {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.expertise-mini-block {
	background: rgba(61, 43, 31, 0.4);
	padding: 1.5rem;
	border-radius: 15px;
	border: 1px solid rgba(216, 217, 124, 0.2);
	transition: all 0.3s ease;
}


.mini-icon {
	font-size: 1.5rem;
	margin-bottom: 0.8rem;
}

.expertise-mini-block h4 {
	color: #D8D97C;
	font-size: 1.1rem;
	margin-bottom: 0.8rem;
}

.expertise-mini-block p {
	color: #D3C7AC;
	font-size: 0.9rem;
	line-height: 1.6;
}

/* Services Landscape */
.services-landscape {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin: 3rem 0;
	/* Center the single pillar */
	justify-items: center;
}

.service-pillar {
	background: linear-gradient(135deg, rgba(61, 43, 31, 0.6), rgba(42, 31, 26, 0.8));
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	transition: transform 0.3s ease;
	/* Add slight imperfections for human feel */
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
}


.ai-pillar {
	border-top: 4px solid #4CAF50;
	transform: rotate(-0.4deg);
	/* Add a slight color variation for more personality */
	background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(61, 43, 31, 0.6), rgba(42, 31, 26, 0.8));
}

.development-pillar {
	border-top: 4px solid #2196F3;
	transform: rotate(0.3deg);
	/* Add a slight blue tint for personality */
	background: linear-gradient(135deg, rgba(33, 150, 243, 0.05), rgba(61, 43, 31, 0.6), rgba(42, 31, 26, 0.8));
}

.leadership-pillar {
	border-top: 4px solid #FF9800;
	transform: rotate(-0.2deg);
	/* Add a warm orange tint for personality */
	background: linear-gradient(135deg, rgba(255, 152, 0, 0.05), rgba(61, 43, 31, 0.6), rgba(42, 31, 26, 0.8));
}

.consolidated-pillar {
	border-top: 4px solid #4CAF50;
	transform: rotate(0.1deg);
	/* Wider layout for single pillar */
	max-width: 800px;
	width: 100%;
	/* Mixed color personality for comprehensive services */
	background: linear-gradient(135deg, 
		rgba(76, 175, 80, 0.03), 
		rgba(33, 150, 243, 0.02), 
		rgba(61, 43, 31, 0.6), 
		rgba(42, 31, 26, 0.8));
}

.pillar-header {
	padding: 2rem;
	background: rgba(216, 217, 124, 0.1);
	border-bottom: 1px solid rgba(216, 217, 124, 0.2);
}

.pillar-header h3 {
	color: #D8D97C;
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.pillar-subtitle {
	color: #D3C7AC;
	font-size: 1rem;
	opacity: 0.9;
}

.pillar-content {
	padding: 2rem;
}

.consolidated-pillar .pillar-content {
	padding: 2rem;
	/* Grid layout for service areas in consolidated pillar */
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.service-area {
	margin-bottom: 2rem;
}

.service-area:last-child {
	margin-bottom: 0;
}

.consolidated-pillar .service-area {
	margin-bottom: 0;
}

.service-area h4 {
	color: #D8D97C;
	font-size: 1.2rem;
	margin-bottom: 0.8rem;
}

.service-area p {
	color: #D3C7AC;
	line-height: 1.6;
	font-size: 0.95rem;
}

/* Journey Flow - Side-by-Side Timeline */
.journey-flow {
	position: relative;
	margin: 4rem 0;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* Central timeline line */
.journey-flow::before {
	content: '';
	position: absolute;
	left: 30%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(to bottom, #D8D97C, rgba(216, 217, 124, 0.3));
	z-index: 1;
}

.journey-milestone {
	position: relative;
	margin-bottom: 3rem;
	display: grid;
	grid-template-columns: 28% 4% 1fr;
	gap: 0;
	align-items: start;
	min-height: 80px;
}

/* Year display - left side */
.milestone-year {
	background: #D8D97C;
	color: #2a1f1a;
	font-size: 1.4rem;
	font-weight: 600;
	padding: 0.8rem 1rem;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	text-align: center;
	font-family: 'Poppins', sans-serif;
	letter-spacing: -0.01em;
	justify-self: end;
	margin-right: 1rem;
}

/* Current milestone year highlighting */
.journey-milestone.current .milestone-year {
	background: #4CAF50;
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

/* Timeline dot */
.milestone-dot {
	width: 12px;
	height: 12px;
	background: #D8D97C;
	border: 3px solid rgba(216, 217, 124, 0.4);
	border-radius: 50%;
	justify-self: center;
	align-self: start;
	margin-top: 1rem;
	z-index: 2;
	position: relative;
}

/* Current milestone dot highlighting */
.journey-milestone.current .milestone-dot {
	background: #4CAF50;
	border-color: #4CAF50;
	box-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
}

/* Content containers - right side */
.milestone-content {
	background: rgba(61, 43, 31, 0.6);
	padding: 2rem;
	border-radius: 15px;
	border: 1px solid rgba(216, 217, 124, 0.2);
	position: relative;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	text-align: left;
}

/* Current milestone content highlighting */
.journey-milestone.current .milestone-content {
	background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(61, 43, 31, 0.8));
	border-color: #4CAF50;
	box-shadow: 0 6px 20px rgba(76, 175, 80, 0.2);
}

/* Content styling */
.milestone-content h3 {
	color: #D8D97C;
	font-size: 1.6rem;
	margin-bottom: 1rem;
	font-weight: 600;
	line-height: 1.2;
}

.milestone-company {
	color: #D3C7AC;
	font-size: 1.1rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
	opacity: 0.9;
	font-style: italic;
}

.milestone-content p {
	color: #E8E2D5;
	line-height: 1.7;
	margin-bottom: 2rem;
	font-size: 1rem;
}

/* Current milestone highlighting */
.journey-milestone.current .milestone-content {
	background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(61, 43, 31, 0.8));
	border-color: #4CAF50;
	box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
}

.milestone-achievements {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
}

/* Remove old marker elements that are no longer needed */
.milestone-marker,
.marker-dot,
.marker-line,
.milestone-period {
	display: none;
}

/* Remove old connection line styles */
.milestone-content::before,
.milestone-content::after {
	display: none;
}

.achievement-tag {
	background: rgba(216, 217, 124, 0.2);
	color: #D8D97C;
	padding: 0.3rem 0.8rem;
	border-radius: 15px;
	font-size: 0.8rem;
	font-weight: 500;
	border: 1px solid rgba(216, 217, 124, 0.3);
}

/* Philosophy Section */
.philosophy-section {
	background: linear-gradient(135deg, rgba(61, 43, 31, 0.6), rgba(42, 31, 26, 0.8));
	border-radius: 20px;
	padding: 3rem;
	margin: 4rem 0;
}

.philosophy-content h3 {
	color: #D8D97C;
	font-size: 2rem;
	text-align: center;
	margin-bottom: 2rem;
}

.philosophy-text {
	text-align: center;
	margin-bottom: 3rem;
}

.philosophy-text p {
	color: #D3C7AC;
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.philosophy-pillars {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.pillar {
	background: rgba(216, 217, 124, 0.1);
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	border: 1px solid rgba(216, 217, 124, 0.2);
	transition: all 0.3s ease;
}


.pillar-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.pillar h4 {
	color: #D8D97C;
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

.pillar p {
	color: #D3C7AC;
	line-height: 1.6;
	font-size: 0.95rem;
}

/* Availability Section */
.availability-section {
	background: rgba(61, 43, 31, 0.4);
	border-radius: 20px;
	padding: 3rem;
	margin: 4rem 0;
}

.availability-content h3 {
	color: #D8D97C;
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
}

.availability-content p {
	color: #D3C7AC;
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 2rem;
}

.availability-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.availability-item {
	background: rgba(216, 217, 124, 0.1);
	padding: 2rem;
	border-radius: 15px;
	border: 1px solid rgba(216, 217, 124, 0.2);
	text-align: center;
	transition: all 0.3s ease;
}


.availability-icon {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.availability-item h4 {
	color: #D8D97C;
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

.availability-item p {
	color: #D3C7AC;
	font-size: 0.95rem;
	line-height: 1.6;
}

/* Quirky Details & Easter Eggs */

/* Add a subtle coffee stain effect */
.statement-wrapper::before {
	content: '';
	position: absolute;
	top: 20px;
	right: 30px;
	width: 40px;
	height: 40px;
	background: radial-gradient(circle, rgba(101, 67, 33, 0.1) 30%, transparent 70%);
	border-radius: 50%;
	transform: rotate(25deg);
	opacity: 0.3;
	pointer-events: none;
}

/* Add a tiny doodle-like element */
.service-pillar::after {
	content: '✨';
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 0.8rem;
	opacity: 0.4;
	transform: rotate(-15deg);
	transition: all 0.3s ease;
}


/* Add subtle paper texture */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 20% 30%, rgba(216, 217, 124, 0.02) 1px, transparent 1px),
		radial-gradient(circle at 80% 70%, rgba(216, 217, 124, 0.01) 1px, transparent 1px),
		radial-gradient(circle at 40% 80%, rgba(216, 217, 124, 0.015) 1px, transparent 1px);
	background-size: 200px 200px, 150px 150px, 100px 100px;
	pointer-events: none;
	z-index: -1;
}

/* Add a subtle "loading" animation to tech bubbles */
.tech-bubble:nth-child(5n)::after {
	content: '⚡';
	position: absolute;
	top: -5px;
	right: -5px;
	font-size: 0.6rem;
	opacity: 0;
	animation: sparkle 3s infinite;
}

@keyframes sparkle {
	0%, 90% { opacity: 0; transform: scale(0.5) rotate(0deg); }
	95% { opacity: 1; transform: scale(1) rotate(180deg); }
	100% { opacity: 0; transform: scale(0.5) rotate(360deg); }
}

/* Revolutionary Design Responsive Styles */
@media (max-width: 768px) {
	.statement-wrapper {
		padding: 2rem 1rem;
	}
	
	.mega-title {
		font-size: clamp(1.8rem, 5vw, 2.5rem);
	}
	
	.statement-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.expertise-flow {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.expertise-block {
		padding: 1.5rem;
	}
	
	.block-header {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}
	
	.block-icon {
		font-size: 2rem;
	}
	
	.block-header h3 {
		font-size: 1.5rem;
	}
	
	.tech-flow {
		justify-content: center;
	}
	
	.services-landscape {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.consolidated-pillar .pillar-content {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.pillar-header {
		padding: 1.5rem;
	}
	
	.pillar-content {
		padding: 1.5rem;
	}
	
	/* Timeline responsive design for tablets */
	.journey-flow {
		margin: 2rem 0;
		max-width: 100%;
	}
	
	.journey-milestone {
		margin-bottom: 2rem;
		display: flex;
		flex-direction: column;
		align-items: center;
		min-height: auto;
	}
	
	/* Stack year and content vertically on tablets */
	.milestone-year {
		margin-bottom: 1rem;
		justify-self: center;
		margin-right: 0;
	}
	
	.milestone-content {
		width: 85%;
		text-align: center;
		padding: 2rem;
	}
	
	/* Hide timeline elements on tablets */
	.milestone-dot {
		display: none;
	}
	
	.journey-flow::before {
		display: none;
	}
	
	.milestone-achievements {
		justify-content: center;
	}
	
	.philosophy-section {
		padding: 2rem;
	}
	
	.philosophy-pillars {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.availability-section {
		padding: 2rem;
	}
	
	.availability-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

@media (max-width: 550px) {
	.statement-wrapper {
		padding: 1.5rem;
	}
	
	.statement-item {
		padding: 1.5rem;
	}
	
	.statement-number {
		font-size: 2.5rem;
	}
	
	.expertise-block {
		padding: 1rem;
	}
	
	.block-header {
		gap: 0.8rem;
	}
	
	.block-icon {
		font-size: 1.8rem;
	}
	
	.block-header h3 {
		font-size: 1.3rem;
	}
	
	.expertise-mini-block {
		padding: 1rem;
	}
	
	.pillar-header {
		padding: 1rem;
	}
	
	.pillar-content {
		padding: 1rem;
	}
	
	/* Timeline mobile responsive design */
	.journey-milestone {
		margin-bottom: 2rem;
		display: flex;
		flex-direction: column;
		align-items: center;
		min-height: auto;
	}
	
	/* Mobile year styling */
	.milestone-year {
		font-size: 1.4rem;
		padding: 0.6rem 1rem;
		margin-bottom: 1rem;
		justify-self: center;
		margin-right: 0;
	}
	
	/* Mobile content styling */
	.milestone-content {
		width: 100%;
		text-align: center;
		padding: 1.5rem;
	}
	
	.milestone-content h3 {
		font-size: 1.3rem;
	}
	
	/* Hide timeline elements on mobile */
	.milestone-dot {
		display: none;
	}
	
	.journey-flow::before {
		display: none;
	}
	
	.philosophy-section {
		padding: 1.5rem;
	}
	
	.pillar {
		padding: 1.5rem;
	}
	
	.availability-section {
		padding: 1.5rem;
	}
	
	.availability-item {
		padding: 1.5rem;
	}
	
	/* Mobile navigation improvements */
	#nav a {
		font-size: 0.65rem;
		word-break: break-word;
		line-height: 1.2;
	}
	
	#nav a span {
		display: block;
		font-size: 0.6rem;
		margin-top: 2px;
		line-height: 1.1;
	}
}

/* Full-Width About Section - Elevated Design */
.about-fullwidth {
	padding-top: 0 !important;
	max-width: none !important;
	width: 100%;
	position: relative;
	overflow: visible;
	margin-top: -50px;
	z-index: 10;
}

.about-hero-wrapper {
	background: linear-gradient(135deg, 
		#ffffff 0%, 
		#f8f9fa 50%, 
		#e9ecef 100%);
	display: flex;
	align-items: center;
	position: relative;
	width: 90%;
	margin: 50px auto 0;
	padding: 4rem 5%;
	border-radius: 30px;
	box-shadow: 
		0 -10px 30px rgba(0, 0, 0, 0.15),
		0 -5px 15px rgba(0, 0, 0, 0.1),
		0 10px 30px rgba(0, 0, 0, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.about-hero-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 20%, rgba(76, 175, 80, 0.03) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(33, 150, 243, 0.02) 0%, transparent 50%);
	pointer-events: none;
	z-index: 0;
	border-radius: 30px;
}

.about-hero-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.about-text-section {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	padding-right: 2rem;
}

.about-main-title {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	line-height: 1.1;
	color: #212529;
	margin: 0;
	font-family: 'Poppins', sans-serif;
}

.name-highlight {
	color: #4CAF50;
	position: relative;
}

.title-accent {
	color: #6c757d;
	font-weight: 500;
	font-size: 0.6em;
	display: block;
	margin-top: 0.5rem;
}

.about-description-simple {
	font-size: 1.2rem;
	line-height: 1.6;
	color: #495057;
	font-weight: 400;
	margin: 1.5rem 0;
}

.about-brief {
	font-size: 1.1rem;
	line-height: 1.6;
	color: #495057;
	margin-bottom: 1.5rem;
}

.about-image-section {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.image-container {
	position: relative;
	width: 100%;
	max-width: 450px;
}

.hero-image {
	width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	position: relative;
	z-index: 2;
	object-fit: cover;
	max-height: 600px;
}

.image-bg-accent {
	position: absolute;
	top: 20px;
	left: 20px;
	right: -20px;
	bottom: -20px;
	background: linear-gradient(135deg, #4CAF50, #8BC34A);
	border-radius: 20px;
	z-index: 1;
	opacity: 0.8;
}


.about-location {
	font-size: 1rem;
	line-height: 1.6;
	color: #6c757d !important;
	margin-top: 2rem !important;
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-style: italic;
}

.about-location i {
	color: #4CAF50;
	font-size: 1rem;
	flex-shrink: 0;
	margin-top: 0.2rem;
}

/* Responsive Design */
@media (max-width: 992px) {
	.about-hero-content {
		grid-template-columns: 1fr;
		gap: 3rem;
		text-align: center;
	}
	
	.about-image-section {
		order: -1;
	}
	
	.hero-image {
		max-width: 300px;
		max-height: 400px;
	}
	
	.about-text-section {
		padding-right: 0;
	}
}

@media (max-width: 768px) {
	.about-hero-wrapper {
		padding: 3rem 5%;
		border-radius: 20px;
		width: 95%;
	}
	
	.about-hero-content {
		gap: 2rem;
	}
	
	.about-main-title {
		font-size: clamp(2rem, 6vw, 3rem);
		line-height: 1.2;
	}
	
	/* Ensure proper line breaks in title */
	.about-main-title br {
		display: block;
	}
	
	.about-description-simple {
		font-size: 1.1rem;
		line-height: 1.5;
		hyphens: auto;
		word-break: break-word;
	}
	
	/* Better text wrapping for location info */
	.about-location {
		font-size: 0.95rem;
		line-height: 1.4;
		hyphens: auto;
		word-break: break-word;
	}
	
	/* Mobile-only line break utility */
	.mobile-only {
		display: block;
	}
	
	.mobile-break {
		display: inline;
	}
	
	.hero-image {
		max-width: 250px;
		max-height: 350px;
	}
	
	.about-brief {
		font-size: 1rem;
	}
}

@media (max-width: 550px) {
	.about-hero-wrapper {
		padding: 2rem 5%;
		border-radius: 15px;
		width: 98%;
	}
	
	.about-hero-content {
		gap: 1.5rem;
	}
	
	.hero-image {
		max-width: 200px;
		max-height: 300px;
	}
	
	.about-description-simple {
		font-size: 1rem;
	}
	
	.about-brief {
		font-size: 0.95rem;
	}
}

/* Years Slider Styles */
.years-slider {
	position: relative;
	max-width: 400px;
	width: 400px;
	margin: 20px auto;
	background: rgba(61, 43, 31, 0.4);
	border-radius: 15px;
	overflow: hidden;
	border: 1px solid rgba(216, 217, 124, 0.2);
}

.slider-container {
	position: relative;
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.slider-track {
	display: flex;
	transition: transform 0.5s ease;
	height: 100%;
}

.slide {
	min-width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slide img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slide-info {
	position: absolute;
	bottom: 10px;
	left: 10px;
	background: rgba(0, 0, 0, 0.7);
	color: #ffffff;
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 0.8rem;
}

.slide-year {
	font-weight: 600;
	color: #D8D97C;
	margin-right: 8px;
}

.slide-desc {
	opacity: 0.9;
}

.slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(216, 217, 124, 0.8);
	color: #2a1f1a;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 1.5rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slider-btn:hover {
	background: rgba(216, 217, 124, 1);
	transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
	left: 10px;
}

.slider-btn.next {
	right: 10px;
}

.slider-counter {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.7);
	color: #ffffff;
	padding: 6px 10px;
	border-radius: 15px;
	font-size: 0.75rem;
	font-weight: 500;
}

#slider-current {
	color: #D8D97C;
	font-weight: 600;
}

/* Responsive slider adjustments */
@media (max-width: 768px) {
	.years-slider {
		max-width: 90%;
		width: 90%;
		min-width: 300px;
	}
	
	.slider-container {
		height: 250px;
	}
	
	.slider-btn {
		width: 35px;
		height: 35px;
		font-size: 1.2rem;
	}
	
	.slide-info {
		font-size: 0.7rem;
		padding: 6px 8px;
	}
}

@media (max-width: 550px) {
	.years-slider {
		max-width: 95%;
		width: 95%;
		min-width: 280px;
	}
	
	.slider-container {
		height: 200px;
	}
	
	.slider-btn {
		width: 30px;
		height: 30px;
		font-size: 1rem;
	}
	
	.slide-info {
		bottom: 5px;
		left: 5px;
		font-size: 0.65rem;
		padding: 4px 6px;
	}
	
	.slider-counter {
		bottom: 5px;
		right: 5px;
		font-size: 0.65rem;
		padding: 4px 6px;
	}
}