/* Custom animations and transitions */

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}


/* Animation delays */

.animate-delay-200 {
    animation-delay: 200ms;
}

.animate-delay-400 {
    animation-delay: 400ms;
}

.animate-delay-600 {
    animation-delay: 600ms;
}

.animate-delay-800 {
    animation-delay: 800ms;
}


/* Hero overlay */

.hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}


/* Gold color scheme */

.gold-accent {
    color: #d4af37;
}

.gold-border {
    border-color: #d4af37;
}

.bg-gold {
    background-color: #d4af37;
}

.text-gold {
    color: #d4af37;
}

.hover-gold:hover {
    background-color: #f4d03f;
}


/* Shimmer effect for buttons */

.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}


/* Custom scrollbar */

::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 4px;
}


/* Mobile menu animation */

.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}


/* Smooth scroll behavior */

html {
    scroll-behavior: smooth;
}


/* Image lazy loading animation */

img {
    transition: all 0.3s ease;
}

img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}


/* Text animation for headings */

.animate-text {
    background: linear-gradient(45deg, #d4af37, #f4d03f, #d4af37);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
}


/* Section entrance animations */

.section-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-animate.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Stagger animation for list items */

.stagger-item {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.stagger-item.visible {
    opacity: 1;
    transform: translateX(0);
}


/* Hover effect for service cards */

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

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


/* Custom heading styles */

.heading-elegant {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.heading-highlight {
    position: relative;
    display: inline-block;
}

.heading-highlight::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    border-radius: 2px;
}

.gold-text {
    color: #d4af37;
}

.white-text {
    color: #ffffff;
}

.btn-animate {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-animate::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-animate:hover::before {
    width: 300px;
    height: 300px;
}


/* Card hover effects */

.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.4);
}


/* Gallery specific styles */

.gallery-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.gallery-item img {
    transition: transform 0.3s ease;
}

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

.backdrop-blur-sm {
    background-color: #000;
}


/* Responsive adjustments */

@media (max-width: 768px) {
    .heading-highlight::after {
        width: 60px;
        height: 2px;
    }
    .card-hover:hover {
        transform: translateY(-8px) scale(1.01);
    }
}


/* Loading states */

.loading {
    opacity: 0.6;
    pointer-events: none;
}


/* Focus states for accessibility */

button:focus,
a:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}


/* Print styles */

@media print {
    .no-print {
        display: none !important;
    }
    body {
        background: white !important;
        color: black !important;
    }
}


/* nkp  open */

.bg-black {
    background-color: #000;
}


/* Glass effect for mobile menu */

#mobile-menu {
    background: rgb(0 0 0 / 88%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}


/* Optional: menu links */

#mobile-menu a {
    color: #fff;
    text-decoration: none;
}


/* Optional: hover effect */

#mobile-menu a:hover {
    color: #f5f5f5;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-0 {
    margin-top: 0px !important;
}


/* #### nkp end  */