 /* Custom animations and transitions 12022026 */

 @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;
     }
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-10px);
     }
 }

 @keyframes glow {

     0%,
     100% {
         box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
     }

     50% {
         box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
     }
 }

 .animate-fadeInUp {
     animation: fadeInUp 0.8s ease-out;
 }

 .animate-slideInLeft {
     animation: slideInLeft 0.8s ease-out;
 }

 .animate-slideInRight {
     animation: slideInRight 0.8s ease-out;
 }

 .animate-fadeInScale {
     animation: fadeInScale 0.6s ease-out;
 }

 .animate-pulse {
     animation: pulse 2s infinite;
 }

 .animate-float {
     animation: float 3s ease-in-out infinite;
 }

 .animate-glow {
     animation: glow 2s ease-in-out infinite;
 }

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

 .animate-delay-200 {
     animation-delay: 0.2s;
 }

 .animate-delay-300 {
     animation-delay: 0.3s;
 }

 .animate-delay-400 {
     animation-delay: 0.4s;
 }

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

 .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);
 }

 .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.1), transparent);
     transition: left 0.6s ease;
 }

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

 /* Button hover effects */

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

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

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

 /* Custom Typography */

 .font-playfair {
     font-family: 'Playfair Display', serif;
 }

 .font-montserrat {
     font-family: 'Montserrat', sans-serif;
 }

 .heading-elegant {
     font-family: 'Playfair Display', serif;
     font-weight: 900;
     line-height: 1.1 !important;
     letter-spacing: -0.02em;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.3), 0 0 40px rgba(212, 175, 55, 0.2);
     position: relative;
     display: inline-block;
 }

 .heading-elegant::before {
     content: '';
     position: absolute;
     top: -10px;
     left: -20px;
     right: -20px;
     bottom: -10px;
     background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(244, 208, 63, 0.05));
     border-radius: 20px;
     z-index: -1;
     animation: glow-pulse 3s ease-in-out infinite;
 }

 .heading-elegant span {
     font-family: 'Montserrat', sans-serif;
     font-weight: 700;
     position: relative;
     display: inline-block;
 }

 .heading-elegant .gold-text {
     color: #d4af37;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.6), 0 0 60px rgba(212, 175, 55, 0.4);
     animation: gold-shimmer 2s ease-in-out infinite;
 }

 .heading-elegant .white-text {
     font-weight: 800;
     letter-spacing: 0.08em;
     /* text-transform: uppercase; */
     padding-top: 0.35rem;
     display: inline-block;
     background: linear-gradient(90deg, #ffffff, #f4d03f, #ffffff);
     background-size: 200% 200%;
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: #fefefe57;
     /* 3D depth using stacked shadows */
     text-shadow: 0 1px 0 rgba(0, 0, 0, 0.7), 0 2px 0 rgba(0, 0, 0, 0.75), 0 3px 0 rgba(0, 0, 0, 0.8), 0 4px 0 rgba(0, 0, 0, 0.85), 0 6px 8px rgba(0, 0, 0, 0.9);
     transform: translateY(1px);
     animation: subheading-3d-shimmer 4s ease-in-out infinite;
 }

 @keyframes subheading-3d-shimmer {

     0%,
     100% {
         background-position: 0% 50%;
     }

     50% {
         background-position: 100% 50%;
     }
 }

 @keyframes glow-pulse {

     0%,
     100% {
         box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
         transform: scale(1);
     }

     50% {
         box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
         transform: scale(1.02);
     }
 }

 @keyframes gold-shimmer {

     0%,
     100% {
         background: linear-gradient(45deg, #d4af37, #f4d03f, #d4af37);
         background-size: 200% 200%;
         background-position: 0% 50%;
         -webkit-background-clip: text;
         background-clip: text;
         -webkit-text-fill-color: transparent;
     }

     50% {
         background-position: 100% 50%;
     }
 }

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

 .heading-highlight::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     right: 0;
     height: 3px;
     background: linear-gradient(90deg, transparent, #d4af37, transparent);
     border-radius: 2px;
     animation: slide-across 3s ease-in-out infinite;
 }

 @keyframes slide-across {

     0%,
     100% {
         transform: scaleX(0);
         opacity: 0;
     }

     50% {
         transform: scaleX(1);
         opacity: 1;
     }
 }

 p {
     text-align: justify;
     font-size: 1.05rem;
     line-height: 1.8;
 }

 /* Ensure all Tailwind-sized paragraphs use equal size */

 p.text-sm,
 p.text-lg {
     font-size: 1.05rem !important;
 }

 /* Responsive paragraph sizing */

 @media (max-width: 640px) {
     p {
         font-size: 0.98rem;
         line-height: 1.7;
     }
 }

 @media (min-width: 1024px) {
     p {
         font-size: 1.1rem;
         line-height: 1.85;
     }
 }

 /* Base body typography for better readability & responsiveness */

 body {
     font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
     font-size: 16px;
 }

 /* 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-0 {
     margin-top: 0 !important;
 }

 /* #### nkp end  */