/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Custom Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float-delayed {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.animate-float-delayed {
    animation: float-delayed 7s ease-in-out infinite 1s;
}

@keyframes pulse-slow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-pulse-slow {
    animation: pulse-slow 4s ease-in-out infinite;
}

.animate-pulse-slow-delayed {
    animation: pulse-slow 5s ease-in-out infinite 2s;
}

@keyframes rainbow-glow {
    0% { filter: hue-rotate(0deg) brightness(1); }
    25% { filter: hue-rotate(90deg) brightness(1.2); }
    50% { filter: hue-rotate(180deg) brightness(1); }
    75% { filter: hue-rotate(270deg) brightness(1.2); }
    100% { filter: hue-rotate(360deg) brightness(1); }
}

.animate-rainbow-glow {
    animation: rainbow-glow 4s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.animate-shimmer {
    background: linear-gradient(110deg, transparent 40%, rgba(255,255,255,0.5) 50%, transparent 60%);
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes bounce-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-bounce-gentle {
    animation: bounce-gentle 2s ease-in-out infinite;
}

@keyframes rotate-colors {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.animate-rotate-colors {
    animation: rotate-colors 8s linear infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slideInLeft {
    animation: slideInFromLeft 0.8s ease-out;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slideInRight {
    animation: slideInFromRight 0.8s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-scaleIn {
    animation: scaleIn 0.6s ease-out;
}

/* Background Patterns */
.bg-grid-pattern {
    background-image: 
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.bg-indian-pattern {
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 153, 51, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(220, 20, 60, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 50% 10%, rgba(138, 43, 226, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 10% 50%, rgba(255, 105, 180, 0.1) 1px, transparent 1px),
        linear-gradient(45deg, rgba(255, 215, 0, 0.08) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 153, 51, 0.08) 25%, transparent 25%);
    background-size: 40px 40px, 40px 40px, 30px 30px, 35px 35px, 20px 20px, 20px 20px;
}

.bg-mandala-pattern {
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255, 153, 51, 0.15) 1px, transparent 1px),
        radial-gradient(circle at 25% 25%, rgba(220, 20, 60, 0.12) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.12) 2px, transparent 2px),
        radial-gradient(circle at 25% 75%, rgba(138, 43, 226, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 75% 25%, rgba(255, 105, 180, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 50% 25%, rgba(34, 139, 34, 0.08) 1px, transparent 1px);
    background-size: 30px 30px, 60px 60px, 60px 60px, 45px 45px, 45px 45px, 25px 25px;
}

.bg-festive-pattern {
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 20, 147, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(255, 140, 0, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 40% 60%, rgba(138, 43, 226, 0.12) 1px, transparent 1px),
        radial-gradient(circle at 60% 40%, rgba(0, 206, 209, 0.12) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 20% 80%, rgba(50, 205, 50, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 50px 50px, 35px 35px, 35px 35px, 25px 25px, 25px 25px;
}

.bg-vibrant-dots {
    background-image: 
        radial-gradient(circle at 10% 10%, #ff6347 2px, transparent px),
        radial-gradient(circle at 10% 10%, #ffd700 2px, transparent 2px),
        radial-gradient(circle at 10% 10%, #ff1493 1px, transparent 1px),
        radial-gradient(circle at 10% 10%, #00ced1 1px, transparent 1px);
    background-size: 80px 80px, 80px 80px, 40px 40px, 40px 40px;
    opacity: 0.1;
}

/* Hero Section Styles */
.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-in-out;
}

.hero-content.active {
    opacity: 1;
    transform: translateY(0);
}

.slide-indicator.active {
    background: linear-gradient(to right, #fbbf24, #ec4899) !important;
    transform: scale(1.25);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.5);
}

/* Portfolio Section Styles */
.portfolio-tab {
    transition: all 0.3s ease;
}

.portfolio-tab.active {
    background: linear-gradient(to right, #6366f1, #8b5cf6);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.portfolio-tab:not(.active):hover {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.portfolio-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.portfolio-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

/* Process Steps */
.process-step {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-step:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Review Cards */
.review-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.review-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #8b5cf6, #ec4899);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.review-card:hover::after {
    transform: scaleX(1);
}

/* Featured Review */
.featured-review {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease;
}

.featured-review.active {
    opacity: 1;
    transform: translateX(0);
}

.featured-review.exit {
    opacity: 0;
    transform: translateX(-100px);
}

/* Stats Cards */
.stat-card {
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.05);
}

/* WhatsApp Button */
.whatsapp-btn {
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #fef7ed;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #ff9933, #dc143c);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #e68a00, #b8001a);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem !important;
    }
    
    .hero-content p {
        font-size: 1.125rem !important;
    }
    
    .section-title {
        font-size: 2.25rem !important;
    }
    
    .grid {
        grid-template-columns: 1fr !important;
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: 1fr !important;
    }
    
    .lg\:grid-cols-3 {
        grid-template-columns: 1fr !important;
    }
    
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .text-4xl {
        font-size: 2rem !important;
    }
    
    .text-5xl {
        font-size: 2.5rem !important;
    }
    
    .text-6xl {
        font-size: 3rem !important;
    }
    
    .px-12 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
    
    .py-20 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }
}

/* Utility Classes */
.transition-all {
    transition: all 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.text-gradient-primary {
    background: linear-gradient(to right, #8b5cf6, #ec4899, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-secondary {
    background: linear-gradient(to right, #f97316, #dc2626, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #8b5cf6, #ec4899, #f97316);
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, #f97316, #dc2626, #8b5cf6);
}

.shadow-colorful {
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.shadow-colorful:hover {
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.4);
}

/* Loading States */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Focus States for Accessibility */
button:focus,
a:focus {
    outline: 2px solid #8b5cf6;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .bg-gradient-to-r,
    .bg-gradient-to-br,
    .bg-gradient-to-l {
        background: #f5f5f5 !important;
    }
}


.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 9999;
}

.whatsapp-btn img {
  width:  70px;
  height: 70px;
  display: block;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.3);
}
