/* Modern White Animated Theme */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  /* White granite speckle background */
  background-color: #ffffff;
  background-image:
    radial-gradient(rgba(17, 24, 39, 0.06) 1px, transparent 1px),
    radial-gradient(rgba(107, 114, 128, 0.05) 1px, transparent 1px);
  background-position: 0 0, 12px 12px;
  background-size: 24px 24px;
  color: #111827;
  overflow-x: hidden;
}

/* Modern Header */
.modern-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.modern-header.scrolled {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.

.nav-link {
  color: #111827;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #111827;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-nav {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid #e5e7eb;
}

.hamburger {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.hamburger:hover {
  transform: scale(1.1);
}

/* Modern Buttons */
.modern-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
	border: none;
  text-decoration: none;
}

.modern-btn.primary {
  background: #111827;
  color: #ffffff;
}

.modern-btn.primary:hover {
  background: #1f2937;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.3);
}

.modern-btn.secondary {
  background: #ffffff;
  color: #111827;
  border: 2px solid #111827;
}

.modern-btn.secondary:hover {
  background: #111827;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.2);
}

/* Floating Geometric Shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #111827, transparent);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #111827, transparent);
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, #111827, transparent);
  bottom: 20%;
  left: 50%;
  animation-delay: 4s;
}

.shape-4 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #111827, transparent);
  top: 30%;
  right: 30%;
  animation-delay: 6s;
}

@keyframes float {
	0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

/* Hero Animations */
.hero-title span {
  display: inline-block;
  animation: slideUpFade 1s ease-out forwards;
  opacity: 0;
}

.hero-title span.delay-100 {
  animation-delay: 0.2s;
}

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

.animate-slide-up {
  animation: slideUp 0.8s ease-out forwards;
}

.animate-slide-up.delay-100 {
  animation-delay: 0.1s;
}

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

/* Fade In Up Animations */
.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-up-delay {
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.animate-fade-in-up-delay-2 {
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

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

/* Product Cards */
.product-card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e5e7eb;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #111827;
}

/* Collection Filters */
.collection-filter-modern {
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  cursor: pointer;
  background: #f3f4f6;
  color: #6b7280;
  border: 2px solid transparent;
}

.collection-filter-modern:hover {
  transform: scale(1.05);
  background: #e5e7eb;
  color: #111827;
}

.collection-filter-modern.active {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
  box-shadow: 0 4px 15px rgba(17, 24, 39, 0.3);
}

/* Process Steps */
.process-step-modern {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.process-step-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #111827;
}

/* Timeline Items */
.timeline-item-modern {
  padding: 1.5rem;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
	transition: all 0.3s ease;
}

.timeline-item-modern:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #111827;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Modal Animations */
.modal-content {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #111827;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #1f2937;
}

/* Gallery Item Hover Effects */
.gallery-item img {
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Line Clamp Utility */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* WhatsApp Button Update */
.kesariya-btn {
  background: #25d366;
  color: #ffffff;
  border-radius: 2rem;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.kesariya-btn:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Legacy Support - Keep for backward compatibility */
.kesariya-bg {
  background: #ffffff;
}

.kesariya-title {
  color: #111827;
  font-weight: 800;
}

.kesariya-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid #e5e7eb;
	transition: all 0.3s ease;
}

.kesariya-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .shape {
    display: none;
  }
  
  .hero-title {
    font-size: 3rem !important;
  }
  
  .product-card {
    margin-bottom: 1.5rem;
  }
  
  .collection-filter-modern {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
}

/* Loading Screen Animation */
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}

#loading-screen {
  animation: fadeOut 0.5s ease-out 0.5s forwards;
}

/* Spline Container */
#spline-container {
  pointer-events: none;
  width: 100%;
  height: 100%;
}

#spline-container iframe {
  width: 100% !important;
  height: 100% !important;
}

/* Testimonial Carousel Enhancements */
.testimonial-carousel {
	position: relative;
	overflow: hidden;
  border-radius: 1.5rem;
}

.testimonial-slide {
	flex: 0 0 auto;
	width: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Address Card Animation */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Additional Motion Graphics */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Gradient Animations */
@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Smooth Transitions for All Interactive Elements */
a, button {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus States for Accessibility */
.modern-btn:focus,
.nav-link:focus {
  outline: 2px solid #111827;
  outline-offset: 2px;
}
