/* Custom Design Tokens & Gradients */
:root {
    --primary-gradient: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    --secondary-gradient: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
    background-color: #fdfdfd;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

/* Marathi Stylish Fonts */
.marathi-mode {
    font-family: 'Poppins', sans-serif !important;
}

.marathi-mode h1, 
.marathi-mode h2, 
.marathi-mode h3,
.marathi-mode .hero-title span {
    font-family: 'Rozha One', serif !important;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-bg {
    background: var(--primary-gradient);
}

.gradient-btn {
    background: var(--primary-gradient);
    transition: all 0.3s ease;
    background-size: 200% auto;
}

.gradient-btn:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.glass-nav {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.service-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card h3 {
    color: #1a1a1a;
}

.service-card p {
    color: #4b5563; /* text-gray-600 */
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
    pointer-events: none;
}

.service-card:hover::before {
    left: 100%;
}

/* Specific Card Themes */
.card-purple {
    background: linear-gradient(135deg, #f3e8ff 0%, #ffffff 100%);
}

.card-blue {
    background: linear-gradient(135deg, #e0f2fe 0%, #ffffff 100%);
}

.card-orange {
    background: linear-gradient(135deg, #ffedd5 0%, #ffffff 100%);
}

.card-pink {
    background: linear-gradient(135deg, #fce7f3 0%, #ffffff 100%);
}

.card-yellow {
    background: linear-gradient(135deg, #fef9c3 0%, #ffffff 100%);
}

.card-indigo {
    background: linear-gradient(135deg, #e0e7ff 0%, #ffffff 100%);
}

.service-card:hover.card-purple {
    background: linear-gradient(135deg, #a855f7 0%, #7e22ce 100%);
    color: white;
}

.service-card:hover.card-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.service-card:hover.card-orange {
    background: linear-gradient(135deg, #f97316 0%, #c2410c 100%);
    color: white;
}

.service-card:hover.card-pink {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: white;
}

.service-card:hover.card-yellow {
    background: linear-gradient(135deg, #eab308 0%, #a16207 100%);
    color: white;
}

.service-card:hover.card-indigo {
    background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
    color: white;
}

.service-card:hover h3,
.service-card:hover p {
    color: white;
}

.service-card:hover .service-icon-container {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.service-icon-container {
    transition: all 0.3s ease;
}

/* Luxury Branding Styles */
.gradient-text {
    background: linear-gradient(135deg, #7e22ce 0%, #db2777 50%, #ea580c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.group:hover .gradient-text {
    filter: brightness(1.1);
    transform: scale(1.02);
}

/* Gallery Filter Animations */
.gallery-item {
    transition: all 0.5s ease;
}

.gallery-item.hide {
    opacity: 0;
    transform: scale(0.8);
    display: none;
}

/* Floating WhatsApp Button Animation */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Language Toggle Switch */
.lang-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.lang-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.lang-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #e2e8f0;
    transition: .4s;
    border-radius: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    font-size: 10px;
    font-weight: bold;
    color: #64748b;
}

.lang-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

input:checked+.lang-slider {
    background: var(--primary-gradient);
    color: white;
}

input:checked+.lang-slider:before {
    transform: translateX(26px);
}

.lang-label {
    z-index: 1;
    pointer-events: none;
    text-transform: uppercase;
}

/* Logo and Header Adjustments */
.navbar-logo {
    height: 120px;
    width: 120px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: white;
}

@media (max-width: 640px) {
    .navbar-logo {
        height: 60px;
        width: 60px;
        border-width: 2px;
    }
}