/**
 * Aatvika - Global Stylesheet
 * Consolidated CSS for all pages
 * Based on Index page color palette and design system
 */

/* ============================================
   CUSTOM STYLES & UTILITIES
   ============================================ */

/* Scrollbar Customization */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    -webkit-scrollbar-width: none;
    scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    -webkit-scrollbar-width: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #E9F5DB;
}

::-webkit-scrollbar-thumb {
    background: #95D5B2;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2D6A4F;
}

/*nav bar */
/* ===== NAVBAR BASE ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: rgba(214, 231, 198,0.5);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Dark mode */
.dark .site-header {
  background: rgba(20, 25, 18, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Container */
.nav-container {
  max-width: 1280px;
  margin: auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 45px;
  width: auto;
}

.dark .logo {
  color: #ffffff;
}

/* Desktop Nav */
.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #2f3e2f;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #5c7c3f;
}

.dark .nav-links a {
  color: #ddd;
}

/* Mobile Toggle Button */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 28px;
  color: #2f3e2f;
}

.dark .menu-toggle {
  color: #fff;
}

/* Mobile Menu */
.mobile-menu {
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  gap: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.mobile-menu a {
  text-decoration: none;
  font-size: 15px;
  color: #2f3e2f;
  font-weight: 500;
  padding: 4px 0;
}

.dark .mobile-menu a {
  color: #ddd;
}

/* Show mobile menu when active */
.mobile-menu.active {
  max-height: 500px;
  padding: 16px 24px 24px;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}



body {
  background-image: url('/image/b1.jpg'); /* path to your image */
  background-size: cover;        /* fills full screen */
  background-position: center;   /* keeps design centered */
  background-repeat: no-repeat;  /* prevents tiling */
  background-attachment: fixed;  /* subtle premium effect */
}

/* ============================================
   BACKGROUND PATTERNS & TEXTURES
   ============================================ */

.tribal-pattern {
    background-image: url(https://lh3.googleusercontent.com/aida-public/AB6AXuB9FMyeIPevdOwTUMbgYPkPdjGRT-3wmsVVXz-PZJ8Nxm1a0cSCWrEicW1QMnILauGkGo6u_RMMa1EXhCYZLbH3gaysNLRkmHOYOcjaMwsahALjKP3csOK_9tEXg2vWcFA7cY4wOMsR-5KJUSFGtTnqWGAEC2vQ4EZIab2N46ZaOVxWMIjw9vxu90rVN-nPLUTXQI-MeYYdCDT5oY_1WZ_-Qo9qdEP0ziHvP-0k6WusudrbdiBeKgyGkkjZzdHgT0VJOKaONEryzeM);
}

.warli-pattern {
    background-image: radial-gradient(#2D6A4F 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.15;
}

.earth-texture {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235C3C25' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ============================================
   HERO SECTION & IMAGE OPTIMIZATIONS
   ============================================ */

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.7s ease-in-out;
}

.hero-section:hover .hero-bg-image {
    transform: scale(1.05);
}

/* Lazy loading optimization */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Image fitting for hero sliders */
.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image-container img,
.hero-image-container [style*="background-image"] {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}
/* overlap wali art */
.purpose-section {
  position: relative;
  overflow: visible;
}
.warli-dividers {
  position: absolute;
  top: -25px;          /* pushes it outside to overlap */
  left: 0;
  width: 100%;
  height: 110px;
  pointer-events: none;
  z-index: 5;
  object-fit: cover;
}
.warli-divider {
  position: absolute;
  bottom: -25px;          /* pushes it outside to overlap */
  left: 0;
  width: 100%;
  height: 110px;
  pointer-events: none;
  z-index: 5;
   object-fit: cover;
}

/*home product slider */

.product-slider {
  width: 100%;
  height: 400px;
   position: relative;
  overflow: hidden;
}


.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 2s ease-in-out;
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1 0 100%;
}

/* about section */
/* ===== ABOUT SPLIT SECTION ===== */
.about-split {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .about-split {
    flex-direction: row;
  }
  .about-left,
  .about-right {
    width: 50%;
  }
}

.about-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-main, #fefefe);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .about-heading {
    font-size: 3rem;
  }
}

/* Highlight effect behind “Land” */
.highlight {
  position: relative;
  color:  rgb(227, 166, 22);
  padding: 0 4px;
}



.about-right p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 2);
  margin-bottom: 1.5rem;
}

/* ===== STATS GRID ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: var(--card-bg, #ffffff);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.stat-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary, #2f3e2f);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted, #6b7280);
}

/* Featured Card */
.featured {
  background: var(--primary, #4CAF50);
  color: white;
  border: none;
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--accent, #ffd166);
}

/* practice page */
/* Timeline vertical line */
.timeline-section {
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #d1fae5, #059669, #d1fae5);
  transform: translateX(-50%);
  border-radius: 999px;
  opacity: 0.3;
}

/* Reveal Base */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(.17,.67,.83,.67);
}

/* Left & Right slide */
.reveal-left { transform: translateX(-80px); }
.reveal-right { transform: translateX(80px); }

/* Active state */
.reveal.active {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Image hover effect */
.timeline-image img {
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.timeline-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Center timeline icon (desktop) */
.timeline-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: white;
  border: 4px solid #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.timeline-item:hover .timeline-icon {
  transform: translate(-50%, -50%) scale(1.1);
}

.timeline-icon span {
  font-size: 32px;
  color: #059669;
}

/* Mobile icon above text */
.icon-mobile {
  display: inline-flex;
  background: rgba(5,150,105,0.1);
  padding: 10px;
  border-radius: 50%;
  margin-bottom: 12px;
}

.icon-mobile span {
  font-size: 28px;
  color: #059669;
}



/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

/* Fade in up animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Scroll reveal animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Hover lift effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(45, 106, 79, 0.15);
}

/* Card hover effects */
.card-hover-effect {
    transition: all 0.3s ease;
}

.card-hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(45, 106, 79, 0.15), 0 8px 10px -6px rgba(45, 106, 79, 0.1);
}

/* Image overlay effects */
.image-overlay-hover {
    position: relative;
    overflow: hidden;
}

.image-overlay-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(45, 106, 79, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.image-overlay-hover:hover::before {
    opacity: 1;
}

/* Smooth scale on hover */
.scale-hover {
    transition: transform 0.4s ease;
}

.scale-hover:hover {
    transform: scale(1.02);
}

/* ============================================
   PRODUCT/IMAGE SLIDER STYLES
   ============================================ */

.img-slider-progress-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 99px;
    flex-grow: 1;
    position: relative;
    overflow: hidden;
}

.img-slider-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #95D5B2;
    transition: width 0.3s ease;
}

.product-card-img-container:hover .img-slider-progress-fill {
    width: 100%;
}

/* ============================================
   MODAL STYLES
   ============================================ */

#enquiry-modal {
    display: none;
}

#enquiry-modal.active {
    display: flex;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Pulse animation for WhatsApp button */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: pulse-whatsapp 2s infinite;
}

/* ============================================
   TEXT UTILITIES
   ============================================ */

.text-vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* ============================================
   SELECTION STYLING
   ============================================ */

::selection {
    background: #95D5B2;
    color: #2D6A4F;
}

::-moz-selection {
    background: #95D5B2;
    color: #2D6A4F;
}

/* ============================================
   FOCUS STYLES
   ============================================ */

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #95D5B2;
    outline-offset: 2px;
}

/* ============================================
   SMOOTH SCROLLING
   ============================================ */

html {
    scroll-behavior: smooth;
}

/* ============================================
   SNAP SCROLL (for story/journal pages)
   ============================================ */

.snap-y-mandatory {
    scroll-snap-type: y mandatory;
}

.snap-start {
    scroll-snap-align: start;
}

/* ============================================
   LOADING STATES
   ============================================ */

.skeleton-loading {
    background: linear-gradient(90deg, #E9F5DB 25%, #95D5B2 50%, #E9F5DB 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .whatsapp-float,
    header,
    footer,
    .no-print {
        display: none !important;
    }
}