   :root {
       /* Enhanced Color Palette */
       --primary-color: #8B1538;
       /* Deep maroon */
       --primary-light: #a83257;
       --secondary-color: #D4AF37;
       /* Gold */
       --secondary-light: #e8c252;
       --accent-color: #E6B8A2;
       /* Peach */
       --cream-color: #FAF7F4;
       /* Off-white */
       --soft-pink: #F4E6E7;
       /* Light pink */
       --text-dark: #2D1B25;
       /* Dark brown */
       --text-muted: #6B5B7D;
       /* Muted purple */
       --light-gray: #f8f9fa;
   }

   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
   }

   body {
       font-family: 'Poppins', sans-serif;
       line-height: 1.7;
       color: var(--text-dark);
       overflow-x: hidden;
   }

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

   /* Custom Gradients */
   .bg-gradient-warm {
       background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
   }

   .bg-gradient-gold {
       background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
   }

   .bg-gradient-sunset {
       background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--secondary-color) 100%);
   }

   /* Header Styles - Enhanced */
   .navbar-custom {
       transition: all 0.4s ease;
       background-color: rgba(255, 255, 255, 0.95);
       backdrop-filter: blur(8px);
   }

   .navbar-scrolled {
       background-color: rgba(255, 255, 255, 0.98) !important;
       box-shadow: 0 5px 20px rgba(139, 21, 56, 0.1);
       padding: 0.2rem 0;
   }

   .navbar-brand {
       font-size: 2.2rem;
       font-weight: 700;
       color: var(--primary-color) !important;
       letter-spacing: -0.5px;
   }

   .navbar-brand span {
       color: var(--secondary-color);
   }

   .nav-link {
       color: var(--text-dark) !important;
       font-weight: 500;
       transition: all 0.3s ease;
       padding: 0.5rem 1rem !important;
       position: relative;
   }

   .nav-link:hover {
       color: var(--primary-color) !important;
   }

   .nav-link:after {
       content: '';
       position: absolute;
       width: 0;
       height: 2px;
       bottom: 0;
       left: 0;
       background-color: var(--secondary-color);
       transition: width 0.3s ease;
   }

   .nav-link:hover:after {
       width: 100%;
   }

   /* Hero Section - Enhanced */
   .hero-section {
       min-height: 100vh;
       background: linear-gradient(135deg, rgba(139, 21, 56, 0.85) 0%, rgba(230, 184, 162, 0.45) 100%),
           url('/newmoban/_external/demo.mobanwang.com/mb/lo202601/202601013/html/assets/images/photo-1583939003579-730e3918a45a.jpeg') center/cover no-repeat;
       display: flex;
       align-items: center;
       position: relative;
       overflow: hidden;
   }

   .hero-section:before {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       width: 100%;
       height: 100px;
       background: linear-gradient(to top, var(--cream-color), transparent);
       z-index: 1;
   }

   .hero-content {
       position: relative;
       z-index: 2;
   }

   .hero-content h1 {
       font-size: 4.5rem;
       font-weight: 700;
       color: white;
       margin-bottom: 1.8rem;
       line-height: 1.15;
       text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
   }

   .hero-content p {
       font-size: 1.3rem;
       color: rgba(255, 255, 255, 0.92);
       margin-bottom: 2.5rem;
       max-width: 600px;
   }

   .btn-custom-primary {
       background: var(--secondary-color);
       border: none;
       color: #fff;
       font-weight: 600;
       padding: 1rem 2.2rem;
       border-radius: 50px;
       transition: all 0.4s ease;
       box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
       letter-spacing: 0.5px;
   }

   .btn-custom-primary:hover {
       background: var(--secondary-light);
       transform: translateY(-3px);
       box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
   }

   .btn-outline-custom {
       border: 2px solid white;
       color: white;
       background: transparent;
       font-weight: 600;
       padding: 1rem 2.2rem;
       border-radius: 50px;
       transition: all 0.4s ease;
       letter-spacing: 0.5px;
   }

   .btn-outline-custom:hover {
       background: white;
       color: var(--primary-color);
       transform: translateY(-3px);
   }

   /* Stats - Enhanced */
   .stats-item {
       text-align: center;
       color: white;
       padding: 1.5rem;
       border-radius: 15px;
       background: rgba(255, 255, 255, 0.15);
       backdrop-filter: blur(5px);
       border: 1px solid rgba(255, 255, 255, 0.2);
       transition: all 0.3s ease;
   }

   .stats-item:hover {
       transform: translateY(-5px);
       background: rgba(255, 255, 255, 0.25);
   }

   .stats-number {
       font-size: 2.5rem;
       font-weight: 700;
       display: flex;
       align-items: center;
       justify-content: center;
       gap: 0.5rem;
   }

   .stats-label {
       font-size: 1rem;
       opacity: 0.9;
       font-weight: 500;
   }

   /* Section Styling - Enhanced */
   .section-padding {
       padding: 2rem 0;
   }

   .section-title {
       font-size: 1.2rem;
       font-weight: 700;
       color: var(--primary-color);
       margin-bottom: 1.5rem;
       position: relative;
       display: inline-block;
   }

   .section-title:after {
       content: '';
       position: absolute;
       bottom: -10px;
       left: 0;
       width: 60px;
       height: 4px;
       background: var(--secondary-color);
       border-radius: 2px;
   }

   .section-subtitle {
       font-size: 1.2rem;
       color: var(--text-muted);
       max-width: 700px;
       margin-bottom: 3rem;
   }

   /* Cards - Enhanced */
   .custom-card {
       border: none;
       border-radius: 15px;
       box-shadow: 0 10px 30px rgba(139, 21, 56, 0.08);
       transition: all 0.4s ease;
       height: 100%;
       overflow: hidden;
       position: relative;
       z-index: 1;
   }

   .custom-card:before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: linear-gradient(to bottom, rgba(139, 21, 56, 0.03), transparent);
       z-index: -1;
   }

   .custom-card:hover {
       transform: translateY(-10px);
       box-shadow: 0 15px 40px rgba(139, 21, 56, 0.15);
   }

   .service-icon {
       width: 5rem;
       height: 5rem;
       border-radius: 15px;
       display: flex;
       align-items: center;
       justify-content: center;
       margin-bottom: 1.8rem;
       font-size: 1.8rem;
       color: white;
       box-shadow: 0 5px 15px rgba(139, 21, 56, 0.2);
   }

   /* Gallery - Enhanced */
   .gallery-item {
       position: relative;
       overflow: hidden;
       border-radius: 15px;
       cursor: pointer;
       transition: all 0.4s ease;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
   }

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

   .gallery-item img {
       width: 100%;
       height: 280px;
       object-fit: cover;
       transition: transform 0.6s ease;
   }

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

   .gallery-overlay {
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       background: linear-gradient(to top, rgba(139, 21, 56, 0.85), transparent);
       opacity: 0;
       transition: opacity 0.4s ease;
       display: flex;
       align-items: flex-end;
       padding: 1.5rem;
   }

   .gallery-item:hover .gallery-overlay {
       opacity: 1;
   }

   .gallery-info {
       color: white;
       transform: translateY(20px);
       transition: transform 0.4s ease;
   }

   .gallery-item:hover .gallery-info {
       transform: translateY(0);
   }

   .gallery-category {
       background: var(--secondary-color);
       color: var(--primary-color);
       padding: 0.3rem 1rem;
       border-radius: 20px;
       font-size: 0.8rem;
       font-weight: 600;
       display: inline-block;
       margin-bottom: 0.8rem;
   }

   /* Testimonials - Enhanced */
   .testimonial-card {
       border: none;
       border-radius: 15px;
       padding: 2.5rem;
       height: 100%;
       position: relative;
       box-shadow: 0 10px 30px rgba(139, 21, 56, 0.08);
       background: white;
       transition: all 0.4s ease;
   }

   .testimonial-card:hover {
       transform: translateY(-10px);
       box-shadow: 0 15px 40px rgba(139, 21, 56, 0.15);
   }

   .quote-icon {
       position: absolute;
       top: 1.5rem;
       right: 1.5rem;
       color: rgba(212, 175, 55, 0.2);
       font-size: 3rem;
       z-index: 0;
   }

   .stars {
       color: var(--secondary-color);
       margin-bottom: 1.2rem;
       font-size: 1.1rem;
   }

   .client-avatar {
       width: 60px;
       height: 60px;
       border-radius: 50%;
       object-fit: cover;
       border: 3px solid var(--secondary-color);
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
   }

   /* Contact Form - Enhanced */
   .form-control {
       border: 2px solid #e9ecef;
       border-radius: 10px;
       padding: 0.9rem 1.2rem;
       transition: all 0.3s ease;
       font-size: 0.95rem;
   }

   .form-control:focus {
       border-color: var(--primary-color);
       box-shadow: 0 0 0 0.2rem rgba(139, 21, 56, 0.1);
   }

   .contact-info-item {
       display: flex;
       align-items: flex-start;
       gap: 1.2rem;
       margin-bottom: 1.8rem;
   }

   .contact-icon {
       width: 3.5rem;
       height: 3.5rem;
       border-radius: 12px;
       display: flex;
       align-items: center;
       justify-content: center;
       color: white;
       flex-shrink: 0;
       font-size: 1.2rem;
       box-shadow: 0 5px 15px rgba(139, 21, 56, 0.2);
   }

   /* WhatsApp Button - Enhanced */
   .whatsapp-btn {
       background: #25D366;
       border: none;
       color: white;
       padding: 1rem 2rem;
       border-radius: 50px;
       font-weight: 600;
       transition: all 0.4s ease;
       display: inline-flex;
       align-items: center;
       justify-content: center;
       box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
   }

   .whatsapp-btn:hover {
       background: #128C7E;
       transform: translateY(-3px);
       box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
       color: white;
   }

   /* Footer - Enhanced */
   .footer {
       background: var(--primary-color);
       color: white;
       padding: 5rem 0 2rem;
       position: relative;
   }

   .footer:before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 10px;
       background: var(--secondary-color);
   }

   .footer h5 {
       color: white;
       margin-bottom: 1.8rem;
       position: relative;
       padding-bottom: 0.8rem;
   }

   .footer h5:after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       width: 40px;
       height: 2px;
       background: var(--secondary-color);
   }

   .footer a {
       color: rgba(255, 255, 255, 0.8);
       text-decoration: none;
       transition: all 0.3s ease;
       display: inline-block;
       margin-bottom: 0.8rem;
   }

   .footer a:hover {
       color: #fff;
       transform: translateX(5px);
   }

   .social-icons a {
       width: 2.8rem;
       height: 2.8rem;
       background: var(--secondary-color);
       color: var(--primary-color);
       border-radius: 50%;
       display: inline-flex;
       align-items: center;
       justify-content: center;
       margin-right: 0.8rem;
       transition: all 0.3s ease;
       font-size: 1.1rem;
   }

   .social-icons a:hover {
       transform: translateY(-5px) scale(1.1);
       box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
   }

   /* Scroll to Top - Enhanced */
   .scroll-to-top {
       position: fixed;
       bottom: 2.5rem;
       right: 0.5rem;
       width: 3.5rem;
       height: 3.5rem;
       border-radius: 50%;
       border: none;
       background: var(--secondary-color);
       color: #fff;
       font-size: 1.3rem;
       transition: all 0.4s ease;
       opacity: 0;
       visibility: hidden;
       z-index: 1000;
       box-shadow: 0 5px 20px rgba(139, 21, 56, 0.2);
       display: flex;
       align-items: center;
       justify-content: center;
   }

   .scroll-to-top.show {
       opacity: 1;
       visibility: visible;
   }

   .scroll-to-top:hover {
       background: var(--secondary-light);
       transform: translateY(-5px) scale(1.1);
   }

   /* Animations - Enhanced */
   .fade-in-up {
       opacity: 0;
       transform: translateY(40px);
       transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
   }

   .fade-in-up.animate {
       opacity: 1;
       transform: translateY(0);
   }

   .delay-1 {
       transition-delay: 0.1s;
   }

   .delay-2 {
       transition-delay: 0.2s;
   }

   .delay-3 {
       transition-delay: 0.3s;
   }

   .delay-4 {
       transition-delay: 0.4s;
   }

   /* Background Colors */
   .bg-cream {
       background-color: var(--cream-color);
   }

   .bg-soft-pink {
       background-color: var(--soft-pink);
   }

   .bg-light-gray {
       background-color: var(--light-gray);
   }

   /* Floating Elements */
   .floating {
       animation: floating 6s ease-in-out infinite;
   }

   @keyframes floating {
       0% {
           transform: translateY(0px);
       }

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

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

   /* Responsive - Enhanced */
   @media (max-width: 1199.98px) {
       .hero-content h1 {
           font-size: 4rem;
       }
   }

   @media (max-width: 991.98px) {
       .hero-content h1 {
           font-size: 3.5rem;
       }

       .section-title {
           font-size: 2.8rem;
       }

       .section-padding {
           padding: 2rem 0;
       }
   }

   @media (max-width: 767.98px) {
       .hero-content h1 {
           font-size: 3rem;
           line-height: 1.2;
       }

       .hero-content p {
           font-size: 1.15rem;
       }

       .section-title {
           font-size: 2.4rem;
       }

       .section-subtitle {
           font-size: 1.1rem;
       }

       .stats-item {
           margin-bottom: 1.5rem;
       }

       .navbar-brand {
           font-size: 1.8rem;
       }

       .gallery-item img {
           height: 220px;
       }
   }

   @media (max-width: 575.98px) {
       .d-flex {
           display: flow !important
       }

       .hero-content h1 {
           font-size: 2.5rem;
       }

       .section-title {
           font-size: 2rem;
       }

       .btn-custom-primary,
       .btn-outline-custom {
           padding: 0.8rem 1.5rem;
           font-size: 0.95rem;
       }

       .hero-section {
           padding-top: 80px;
       }

       .footer {
           padding: 3rem 0 1.5rem;
           text-align: center;
       }

       .footer h5:after {
           left: 50%;
           transform: translateX(-50%);
       }

       .scroll-to-top {
           width: 3rem;
           height: 3rem;
           font-size: 1.1rem;
           bottom: 1.5rem;
           right: 1.5rem;
       }
   }

   /* Utility Classes */
   .rounded-lg {
       border-radius: 20px !important;
   }

   .shadow-soft {
       box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05) !important;
   }

   .z-1 {
       z-index: 1;
   }

   .overflow-hidden {
       overflow: hidden;
   }

   /* Custom Scrollbar */
   ::-webkit-scrollbar {
       width: 8px;
   }

   ::-webkit-scrollbar-track {
       background: var(--cream-color);
   }

   ::-webkit-scrollbar-thumb {
       background: var(--primary-color);
       border-radius: 4px;
   }

   ::-webkit-scrollbar-thumb:hover {
       background: var(--primary-light);
   }

   #home {
       margin-top: 85px;
   }

   #contactus,
   #plan {
       color: #fff;
   }

   .btn-outline-primary {
       color: #a32e52;
       border-color: #a32e52;
   }

   .btn:hover {
       background-color: #a32e52;
       color: #fff;
       border-color: #a32e52;
   }

   #services .bg-gradient-warm {
       margin: auto;
       margin-bottom: 20px;
   }

   #about .bg-gradient-warm {
       margin: auto;
       margin-bottom: 20px;
   }

   .nav-link.active {
       color: var(--secondary-color) !important;
       /* or your theme color */
       font-weight: bold;
   }

   #contactForm {
       margin-top: 10px;
   }

   .nav-link.active::after {
       width: 100%;
   }

   /* Preloader Styles */
   #preloader {
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: #FAF7F4;
       display: flex;
       flex-direction: column;
       justify-content: center;
       align-items: center;
       z-index: 9999;
       transition: opacity 0.5s ease, visibility 0.5s ease;
       pointer-events: none;
       /* Allow clicks to pass through */
   }

   .preloader-logo {
       font-family: 'Playfair Display', serif;
       font-size: 2.5rem;
       font-weight: 700;
       color: #8B1538;
       margin-bottom: 2rem;
       pointer-events: none;
   }

   .preloader-logo span {
       color: #D4AF37;
   }

   .loader {
       width: 80px;
       height: 80px;
       position: relative;
       pointer-events: none;
   }

   .loader-ring {
       position: absolute;
       width: 100%;
       height: 100%;
       border: 8px solid rgba(139, 21, 56, 0.1);
       border-radius: 50%;
       pointer-events: none;
   }

   .loader-ring:nth-child(1) {
       border-bottom-color: #8B1538;
       animation: rotate1 2s linear infinite;
   }

   .loader-ring:nth-child(2) {
       border-right-color: #D4AF37;
       animation: rotate2 2s linear infinite;
   }

   .loader-ring:nth-child(3) {
       border-top-color: #8B1538;
       animation: rotate3 2s linear infinite;
   }

   @keyframes rotate1 {
       0% {
           transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
       }

       100% {
           transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
       }
   }

   @keyframes rotate2 {
       0% {
           transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
       }

       100% {
           transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
       }
   }

   @keyframes rotate3 {
       0% {
           transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
       }

       100% {
           transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
       }
   }

   .loading-text {
       margin-top: 2rem;
       font-family: 'Poppins', sans-serif;
       color: #2D1B25;
       font-size: 1rem;
       letter-spacing: 2px;
       text-transform: uppercase;
       pointer-events: none;
   }

   .loading-text:after {
       content: '...';
       animation: dots 1.5s steps(5, end) infinite;
   }

   @keyframes dots {

       0%,
       20% {
           content: '.';
       }

       40% {
           content: '..';
       }

       60%,
       100% {
           content: '...';
       }
   }

   /* Ensure content is visible and interactive after load */
   #content {
       opacity: 0;
       transition: opacity 0.5s ease;
   }

   body.loaded #content {
       opacity: 1;
   }

   body.loaded #preloader {
       opacity: 0;
       visibility: hidden;
   }






   .blog-card {
       transition: transform 0.3s ease, box-shadow 0.3s ease;
       height: 100%;
   }

   .blog-card:hover {
       transform: translateY(-5px);
       box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
   }

   .blog-category {
       position: absolute;
       top: 15px;
       right: 15px;
       background: var(--secondary-color);
       color: white;
       padding: 5px 15px;
       border-radius: 20px;
       font-size: 0.75rem;
       font-weight: 600;
   }

   .blog-meta {
       font-size: 0.85rem;
       color: #6c757d;
   }

   .blog-meta i {
       color: var(--secondary-color);
       margin-right: 5px;
   }

   .sidebar-card {
       border: none;
       border-radius: 10px;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
   }

   .sidebar-title {
       font-family: 'Playfair Display', serif;
       color: var(--primary-color);
       position: relative;
       padding-bottom: 15px;
       margin-bottom: 20px;
   }

   .sidebar-title:after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       width: 50px;
       height: 3px;
       background: var(--secondary-color);
   }

   .tag-cloud a {
       display: inline-block;
       padding: 5px 15px;
       background: #f8f9fa;
       border-radius: 20px;
       margin: 0 5px 10px 0;
       font-size: 0.85rem;
       transition: all 0.3s ease;
   }

   .tag-cloud a:hover {
       background: var(--secondary-color);
       color: white;
       text-decoration: none;
   }

   .popular-post {
       display: flex;
       margin-bottom: 15px;
       align-items: center;
   }

   .popular-post-img {
       width: 80px;
       height: 80px;
       object-fit: cover;
       border-radius: 8px;
       margin-right: 15px;
   }

   .popular-post-title {
       font-size: 0.95rem;
       margin-bottom: 5px;
   }

   .popular-post-date {
       font-size: 0.8rem;
       color: #6c757d;
   }

   .justify-content-between {
       text-decoration: none;
       color: #6c757d;
   }

   .page-link {
       color: #8b1538;
   }

   .active>.page-link,
   .page-link.active {
       background-color: #8b1538;
   }

   .tag-cloud a {
       text-decoration: none;
       color: #6c757d;
   }


   /* Timeline */
   .timeline {
       position: relative;
       padding-left: 3rem;
   }

   .timeline:before {
       content: '';
       position: absolute;
       left: 1.5rem;
       top: 0;
       bottom: 0;
       width: 3px;
       background: var(--secondary-color);
   }

   .timeline-item {
       position: relative;
       padding-bottom: 2.5rem;
   }

   .timeline-item:last-child {
       padding-bottom: 0;
   }

   .timeline-dot {
       position: absolute;
       left: -3rem;
       top: 0;
       width: 3rem;
       height: 3rem;
       background: var(--primary-color);
       color: white;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 1.2rem;
   }

   /* Gallery */
   .gallery-grid {
       display: grid;
       grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
       gap: 1.5rem;
   }

   .gallery-item {
       border-radius: 15px;
       overflow: hidden;
       position: relative;
       cursor: pointer;
   }

   .gallery-item img {
       width: 100%;
       height: 250px;
       object-fit: cover;
       transition: transform 0.6s ease;
   }

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

   /* CTA Section */
   .mehendi-cta {
       background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
       color: white;
       border-radius: 15px;
       overflow: hidden;
       position: relative;
   }

   .mehendi-cta:before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       background: url('/newmoban/_external/demo.mobanwang.com/mb/lo202601/202601013/html/assets/images/photo-1486406146926-c627a92ad1ab.avif') center/cover;
       opacity: 0.1;
   }

   /* Responsive */
   @media (max-width: 991.98px) {
       .mehendi-hero h1 {
           font-size: 3rem;
       }

       .section-title {
           font-size: 2.4rem;
       }
   }

   @media (max-width: 767.98px) {
       .mehendi-hero h1 {
           font-size: 2.5rem;
       }

       .section-title {
           font-size: 2rem;
       }

       .section-padding {
           padding: 3rem 0;
       }
   }

   .section-padding {
       padding: 5rem 0;
   }

   .section-title {
       font-size: 2.5rem;
       font-weight: 700;
       color: var(--primary-color);
       margin-bottom: 1.5rem;
       position: relative;
   }

   .section-title:after {
       content: '';
       position: absolute;
       bottom: -10px;
       left: 0;
       width: 60px;
       height: 4px;
       background: var(--secondary-color);
       border-radius: 2px;
   }

   .content-card {
       background: white;
       border-radius: 15px;
       box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
       padding: 3rem;
       margin-bottom: 2rem;
       margin-top: 65px;
   }

   .navbar-nav {
       margin-left: 30px !important;
   }


   /* Mehendi Designs Section */
   .design-card {
       border: none;
       border-radius: 15px;
       overflow: hidden;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
       transition: all 0.4s ease;
       height: 100%;
   }

   .design-card:hover {
       transform: translateY(-10px);
       box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
   }

   .design-card img {
       height: 300px;
       object-fit: cover;
       width: 100%;
   }

   .design-card .card-body {
       background: var(--cream-color);
       padding: 20px;
   }

   .design-tag {
       position: absolute;
       top: 15px;
       right: 15px;
       background: #d4af36;
       color: white;
       padding: 0.3rem 1rem;
       border-radius: 20px;
       font-size: 0.8rem;
       font-weight: 600;
   }

   /* Decor Styles */
   .decor-item {
       background: white;
       border-radius: 15px;
       padding: 2rem;
       box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
       transition: all 0.4s ease;
       height: 100%;
   }

   .decor-item:hover {
       transform: translateY(-5px);
       box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
   }

   .decor-icon {
       width: 70px;
       height: 70px;
       background: var(--secondary-color);
       color: var(--primary-color);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 1.8rem;
       margin-bottom: 1.5rem;
   }

   /* Timeline */
   .timeline {
       position: relative;
       padding-left: 3rem;
   }

   .timeline:before {
       content: '';
       position: absolute;
       left: 1.5rem;
       top: 0;
       bottom: 0;
       width: 3px;
       background: var(--secondary-color);
   }

   .timeline-item {
       position: relative;
       padding-bottom: 2.5rem;
   }

   .timeline-item:last-child {
       padding-bottom: 0;
   }

   .timeline-dot {
       position: absolute;
       left: -3rem;
       top: 0;
       width: 3rem;
       height: 3rem;
       background: var(--primary-color);
       color: white;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 1.2rem;
   }

   /* Gallery */
   .gallery-grid {
       display: grid;
       grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
       gap: 1.5rem;
   }

   .gallery-item {
       border-radius: 15px;
       overflow: hidden;
       position: relative;
       cursor: pointer;
   }

   .gallery-item img {
       width: 100%;
       height: 250px;
       object-fit: cover;
       transition: transform 0.6s ease;
   }

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

   /* CTA Section */
   .mehendi-cta {
       background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
       color: white;
       border-radius: 15px;
       overflow: hidden;
       position: relative;
   }

   .mehendi-cta:before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       background: url('/newmoban/_external/demo.mobanwang.com/mb/lo202601/202601013/html/assets/images/photo-1486406146926-c627a92ad1ab.avif') center/cover;
       opacity: 0.1;
   }

   /* Responsive */
   @media (max-width: 991.98px) {
       .mehendi-hero h1 {
           font-size: 3rem;
       }

       .section-title {
           font-size: 2.4rem;
       }

       .h5,
       h5 {
           font-size: 0.8rem;
       }

       .small,
       small {
           font-size: 0.7rem;
       }

       .mehendi-hero {
           margin-top: 8%;
       }
   }

   @media (max-width: 767.98px) {
       .mehendi-hero h1 {
           font-size: 2.5rem;
       }

       .section-title {
           font-size: 2rem;
       }

       .section-padding {
           padding: 3rem 0;
       }


   }

   .mehendi-hero {
       min-height: 70vh;
       background: linear-gradient(135deg, rgba(139, 21, 56, 0.85) 0%, rgba(230, 184, 162, 0.45) 100%),
           url('/newmoban/_external/demo.mobanwang.com/mb/lo202601/202601013/html/assets/images/photo-1583939003579-730e3918a45a.jpeg') center/cover no-repeat;
       display: flex;
       align-items: center;
       position: relative;
       color: white;
   }

   .mehendi-hero h1 {
       font-size: 4rem;
       text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
   }

   /* Section Styling */
   .section-padding {
       padding: 5rem 0;
   }

   .section-title {
       font-size: 2.8rem;
       position: relative;
       display: inline-block;
   }

   .section-title:after {
       content: '';
       position: absolute;
       bottom: -10px;
       left: 0;
       width: 60px;
       height: 4px;
       background: var(--secondary-color);
   }

   /* Section Styling - Enhanced */
   .section-padding {
       padding: 2rem 0;
   }

   .section-title {
       font-size: 2.2rem;
       font-weight: 700;
       color: var(--primary-color);
       margin-bottom: 1.5rem;
       position: relative;
       display: inline-block;
   }

   .section-title:after {
       content: '';
       position: absolute;
       bottom: -10px;
       left: 0;
       width: 60px;
       height: 4px;
       background: var(--secondary-color);
       border-radius: 2px;
   }

   .section-subtitle {
       font-size: 1.2rem;
       color: var(--text-muted);
       max-width: 700px;
       margin-bottom: 3rem;
   }

   /* Cards - Enhanced */
   .custom-card {
       border: none;
       border-radius: 15px;
       box-shadow: 0 10px 30px rgba(139, 21, 56, 0.08);
       transition: all 0.4s ease;
       height: 100%;
       overflow: hidden;
       position: relative;
       z-index: 1;
   }

   .custom-card:before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: linear-gradient(to bottom, rgba(139, 21, 56, 0.03), transparent);
       z-index: -1;
   }

   .custom-card:hover {
       transform: translateY(-10px);
       box-shadow: 0 15px 40px rgba(139, 21, 56, 0.15);
   }

   .service-icon {
       width: 5rem;
       height: 5rem;
       border-radius: 15px;
       display: flex;
       align-items: center;
       justify-content: center;
       margin-bottom: 1.8rem;
       font-size: 1.8rem;
       color: white;
       box-shadow: 0 5px 15px rgba(139, 21, 56, 0.2);
   }


   .content-card {
       background: white;
       border-radius: 15px;
       box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
       padding: 3rem;
       margin-bottom: 2rem;
   }

   .content-card h2 {
       color: var(--primary-color);
       margin-top: 2.5rem;
       margin-bottom: 1.5rem;
       font-weight: 600;
   }

   .content-card h3 {
       color: var(--primary-light);
       margin-top: 2rem;
       margin-bottom: 1rem;
       font-weight: 500;
   }

   /* Blog Post Styles */
   .blog-hero {
       height: 70vh;
       min-height: 500px;
       background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
           url('/newmoban/_external/demo.mobanwang.com/mb/lo202601/202601013/html/assets/images/photo-1583939003579-730e3918a45a.jpeg') center/cover no-repeat;
       display: flex;
       align-items: center;
       position: relative;
       overflow: hidden;
   }

   .blog-hero::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       width: 100%;
       height: 100px;
       background: linear-gradient(to bottom, transparent, var(--cream));
       z-index: 1;
   }

   .blog-title {
       font-size: 3.5rem;
       line-height: 1.2;
       text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
       transform: translateY(30px);
       opacity: 0;
       transition: all 1s ease;
   }

   .blog-title.animate {
       transform: translateY(0);
       opacity: 1;
   }

   .blog-meta {
       transform: translateY(30px);
       opacity: 0;
       transition: all 1s ease 0.3s;
   }

   .blog-meta.animate {
       transform: translateY(0);
       opacity: 1;
   }

   /* Content Styles */
   .blog-content {
       position: relative;
       z-index: 2;
       margin-top: -50px;
   }

   .blog-article {
       background: white;
       border-radius: 10px;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
       overflow: hidden;
       transform: translateY(50px);
       opacity: 0;
       transition: all 1s ease 0.6s;
   }

   .blog-article.animate {
       transform: translateY(0);
       opacity: 1;
   }

   .article-image {
       width: 100%;
       height: 500px;
       object-fit: cover;
       transition: transform 0.5s ease;
   }

   .article-image:hover {
       transform: scale(1.03);
   }

   .article-body {
       padding: 3rem;
   }

   .drop-cap::first-letter {
       float: left;
       font-size: 4.5rem;
       line-height: 0.8;
       margin: 0.2em 0.1em 0 0;
       color: var(--primary-color);
       font-family: 'Playfair Display', serif;
   }

   /* Section Animations */
   .content-section {
       opacity: 0;
       transform: translateY(30px);
       transition: all 0.8s ease;
   }

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

   /* Blockquote Styles */
   .blockquote-custom {
       border-left: 5px solid var(--secondary-color);
       background: var(--cream);
       padding: 2rem;
       font-style: italic;
       position: relative;
       margin: 2rem 0;
   }

   .blockquote-custom::before {
       content: '\201C';
       font-size: 5rem;
       color: var(--secondary-color);
       opacity: 0.3;
       position: absolute;
       top: -1rem;
       left: 1rem;
       font-family: Georgia, serif;
   }

   /* Gallery Grid */
   .gallery-grid {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 15px;
       margin: 2rem 0;
   }

   .gallery-item {
       height: 200px;
       overflow: hidden;
       border-radius: 8px;
       position: relative;
       transition: all 0.5s ease;
   }

   .gallery-item img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       transition: transform 0.5s ease;
   }

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

   .gallery-item:hover::after {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: rgba(139, 21, 56, 0.3);
   }

   /* Author Card */
   .author-card {
       display: flex;
       align-items: center;
       background: var(--cream);
       padding: 2rem;
       border-radius: 10px;
       margin: 3rem 0;
       transform: translateY(30px);
       opacity: 0;
       transition: all 0.8s ease 1s;
   }

   .author-card.animate {
       transform: translateY(0);
       opacity: 1;
   }

   .author-avatar {
       width: 100px;
       height: 100px;
       border-radius: 50%;
       object-fit: cover;
       margin-right: 2rem;
       border: 3px solid white;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
   }

   /* Comments Section */
   .comment-card {
       background: white;
       border-radius: 8px;
       padding: 1.5rem;
       margin-bottom: 1.5rem;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
       transform: translateY(30px);
       opacity: 0;
       transition: all 0.5s ease;
   }

   .comment-card.animate {
       transform: translateY(0);
       opacity: 1;
   }

   .comment-meta {
       display: flex;
       align-items: center;
       margin-bottom: 1rem;
   }

   .comment-avatar {
       width: 50px;
       height: 50px;
       border-radius: 50%;
       object-fit: cover;
       margin-right: 1rem;
   }

   /* Responsive Adjustments */
   @media (max-width: 992px) {
       .blog-title {
           font-size: 2.5rem;
       }

       .gallery-grid {
           grid-template-columns: repeat(2, 1fr);
       }
   }

   @media (max-width: 768px) {
       .blog-hero {
           height: 60vh;
       }

       .article-body {
           padding: 2rem;
       }

       .author-card {
           flex-direction: column;
           text-align: center;
       }

       .author-avatar {
           margin-right: 0;
           margin-bottom: 1rem;
       }

       .gallery-grid {
           grid-template-columns: 1fr;
       }
   }


   /* Gallery Hero */
   .gallery-hero {
       height: 70vh;
       min-height: 500px;
       background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
           url('/newmoban/_external/demo.mobanwang.com/mb/lo202601/202601013/html/assets/images/photo-1583939003579-730e3918a45a.jpeg') center/cover no-repeat;
       display: flex;
       align-items: center;
       position: relative;
       overflow: hidden;
   }

   .gallery-hero::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       width: 100%;
       height: 100px;
       background: linear-gradient(to bottom, transparent, var(--cream));
       z-index: 1;
   }

   .gallery-title {
       font-size: 4rem;
       line-height: 1.2;
       text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
       transform: translateY(30px);
       opacity: 0;
       transition: all 1s ease;
   }

   .gallery-title.animate {
       transform: translateY(0);
       opacity: 1;
   }

   /* Filter Controls */
   .filter-controls {
       margin: 3rem 0;
       transform: translateY(30px);
       opacity: 0;
       transition: all 1s ease 0.3s;
   }

   .filter-controls.animate {
       transform: translateY(0);
       opacity: 1;
   }

   .filter-btn {
       border: none;
       background: transparent;
       color: var(--dark);
       font-weight: 500;
       padding: 0.5rem 1.5rem;
       margin: 0 0.5rem;
       position: relative;
       transition: all 0.3s ease;
   }

   .filter-btn::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 50%;
       width: 0;
       height: 2px;
       background: var(--secondary-color);
       transition: all 0.3s ease;
   }

   .filter-btn:hover,
   .filter-btn.active {
       color: var(--primary-color);
   }

   .filter-btn:hover::after,
   .filter-btn.active::after {
       width: 100%;
       left: 0;
   }

   /* Gallery Grid */
   .gallery-container {
       opacity: 0;
       transform: translateY(30px);
       transition: all 1s ease 0.6s;
   }

   .gallery-container.animate {
       opacity: 1;
       transform: translateY(0);
   }

   .gallery-grid {
       display: grid;
       grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
       gap: 20px;
   }

   .gallery-item {
       position: relative;
       border-radius: 8px;
       overflow: hidden;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
       transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
       aspect-ratio: 4/3;
   }

   .gallery-item:hover {
       transform: translateY(-10px);
       box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
   }

   .gallery-img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       transition: transform 0.5s ease;
   }

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

   .gallery-overlay {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
       display: flex;
       flex-direction: column;
       justify-content: flex-end;
       padding: 1.5rem;
       opacity: 0;
       transition: opacity 0.3s ease;
   }

   .gallery-item:hover .gallery-overlay {
       opacity: 1;
   }

   .gallery-category {
       background: var(--secondary-color);
       color: white;
       padding: 0.25rem 1rem;
       border-radius: 20px;
       font-size: 0.75rem;
       font-weight: 600;
       margin-bottom: 0.5rem;
       align-self: flex-start;
   }

   .gallery-caption {
       color: white;
       font-size: 1.25rem;
       margin-bottom: 0;
       transform: translateY(10px);
       transition: transform 0.3s ease;
   }

   .gallery-item:hover .gallery-caption {
       transform: translateY(0);
   }

   /* Lightbox Customization */
   .lg-backdrop {
       background-color: rgba(0, 0, 0, 0.9);
   }

   .lg-outer .lg-thumb-item.active,
   .lg-outer .lg-thumb-item:hover {
       border-color: var(--secondary-color);
   }

   .lg-progress-bar .lg-progress {
       background-color: var(--secondary-color);
   }

   .lg-toolbar .lg-icon:hover {
       color: var(--secondary-color);
   }

   /* Stats Section */
   .stats-section {
       background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
       padding: 5rem 0;
       margin: 5rem 0;
       color: white;
       position: relative;
       overflow: hidden;
   }

   .stats-section::before {
       content: '';
       position: absolute;
       top: -50px;
       left: -50px;
       width: 200px;
       height: 200px;
       background: rgba(255, 255, 255, 0.1);
       border-radius: 50%;
   }

   .stats-section::after {
       content: '';
       position: absolute;
       bottom: -100px;
       right: -100px;
       width: 300px;
       height: 300px;
       background: rgba(255, 255, 255, 0.1);
       border-radius: 50%;
   }

   .stat-item {
       text-align: center;
       padding: 1rem;
       position: relative;
       z-index: 1;
   }

   .stat-number {
       font-size: 3rem;
       font-weight: 700;
       margin-bottom: 0.5rem;
       color: white;
   }

   .stat-label {
       font-size: 1rem;
       text-transform: uppercase;
       letter-spacing: 1px;
       opacity: 0.9;
   }

   /* Responsive Adjustments */
   @media (max-width: 992px) {
       .gallery-title {
           font-size: 3rem;
       }

       .gallery-grid {
           grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
       }
   }

   @media (max-width: 768px) {
       .gallery-hero {
           height: 60vh;
       }

       .gallery-title {
           font-size: 2.5rem;
       }

       .filter-controls {
           flex-wrap: wrap;
           justify-content: center;
       }

       .filter-btn {
           margin: 0.5rem;
       }

       .stats-section {
           padding: 3rem 0;
       }

       .stat-number {
           font-size: 2rem;
       }
   }

   @media (max-width: 576px) {
       .gallery-grid {
           grid-template-columns: 1fr;
       }

       .gallery-item {
           margin: auto !important
       }

       .mehendi-cta .btn-warning {
           margin-bottom: 10%;
       }
   }

   .filter-btn {
       position: relative;
       overflow: hidden;
       z-index: 1;
       transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
       border-radius: 30px;
       padding: 0.5rem 1.8rem;
   }

   .filter-btn.active {
       background: var(--secondary-color);
       color: white !important;
       box-shadow: 0 4px 15px rgba(139, 21, 56, 0.3);
   }

   .filter-btn:not(.active):hover {
       color: var(--primary-color);
       transform: translateY(-2px);
   }

   /* Gallery Item Animations */
   .gallery-item {
       transform: scale(0.95);
       opacity: 0;
       transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
   }

   .gallery-item.show {
       transform: scale(1);
       opacity: 1;
   }

   .gallery-item.hide {
       transform: scale(0.8);
       opacity: 0;
       height: 0;
       margin: 0;
       padding: 0;
       transition: all 0.4s cubic-bezier(0.6, -0.28, 0.735, 0.045);
   }

   /* New Animation for Filter Changes */
   @keyframes fadeIn {
       0% {
           transform: translateY(20px);
           opacity: 0;
       }

       100% {
           transform: translateY(0);
           opacity: 1;
       }
   }

   .gallery-item.filter-animate {
       animation: fadeIn 0.6s ease-out forwards;
   }

   /* Ripple Effect for Filter Buttons */
   .filter-btn .ripple {
       position: absolute;
       background: rgba(255, 255, 255, 0.4);
       border-radius: 50%;
       transform: scale(0);
       opacity: 1;
       pointer-events: none;
       animation: ripple 0.6s linear;
   }

   @keyframes ripple {
       to {
           transform: scale(2.5);
           opacity: 0;
       }
   }

   /* Shimmer Effect for Loading */
   .gallery-item.loading {
       position: relative;
       overflow: hidden;
       background: #f5f5f5;
   }

   .gallery-item.loading::after {
       content: '';
       position: absolute;
       top: 0;
       left: -100%;
       width: 100%;
       height: 100%;
       background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
       animation: shimmer 1.5s infinite;
   }

   @keyframes shimmer {
       100% {
           left: 100%;
       }
   }

   .Kankupagala-process {
       height: 500px;
       text-align: center;
       margin: auto;
       display: block;
   }

   .valamain {
       height: 450px;
       text-align: center;
       margin: auto;
       display: block;
   }

   .footer-content {
       margin: auto;
       display: block !important;
   }

   @media (min-width: 992px) and (max-width: 1366px) {
       .navbar-custom .d-lg-flex {
           flex-direction: column !important;
           align-items: flex-start !important;
           margin-top: 10px;
       }

       .navbar-custom .d-lg-flex div {
           margin-bottom: 5px;
       }
       .navbar-nav{margin-left:0px !important;}
       .navbar-brand{font-size: 1.2rem !important;}
   }