.nav-link:hover,
.navbar-brand {
  color: var(--primary-color) !important;
}
.hero-section:before,
.nav-link:after {
  position: absolute;
  left: 0;
  content: "";
  bottom: 0;
}
.font-playfair,
.preloader-logo {
  font-family: "Playfair Display", serif;
}
.footer a,
.tag-cloud a,
.tag-cloud a:hover {
  text-decoration: none;
}
.article-image,
.author-avatar,
.client-avatar,
.comment-avatar,
.design-card img,
.gallery-img,
.gallery-item img,
.popular-post-img {
  object-fit: cover;
  object-fit: cover;
}
#preloader,
.filter-btn .ripple,
.loader,
.loader-ring,
.loading-text,
.preloader-logo {
  pointer-events: none;
}
.blog-article,
.custom-card,
.design-card,
.faq-card,
.filter-btn,
.footer,
.gallery-item,
.gallery-item.loading,
.hero-section,
.mehendi-cta,
.overflow-hidden,
.stats-section {
  overflow: hidden;
}
:root {
  --primary-color: #8b1538;
  --primary-light: #a83257;
  --secondary-color: #d4af37;
  --secondary-light: #e8c252;
  --accent-color: #e6b8a2;
  --cream-color: #faf7f4;
  --soft-pink: #f4e6e7;
  --text-dark: #2d1b25;
  --text-muted: #6b5b7d;
  --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;
}
.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%
  );
}
.navbar-custom {
  transition: 0.4s;
  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;
  letter-spacing: -0.5px;
}
.lg-toolbar .lg-icon:hover,
.navbar-brand span {
  color: var(--secondary-color);
}
.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  transition: 0.3s;
  padding: 0.5rem 1rem !important;
  position: relative;
}
.btn-custom-primary,
.btn-outline-custom {
  font-weight: 600;
  padding: 1rem 2.2rem;
  transition: 0.4s;
  color: #fff;
  letter-spacing: 0.5px;
}
.nav-link:after {
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s;
}
.nav-link.active::after,
.nav-link:hover:after {
  width: 100%;
}
.hero-section {
  min-height: 100vh;
  background: linear-gradient(
      135deg,
      rgba(139, 21, 56, 0.85) 0,
      rgba(230, 184, 162, 0.45) 100%
    ),
    url("../images/photo-1583939003579-730e3918a45a.jpeg") center/cover
      no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-section:before {
  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: #fff;
  margin-bottom: 1.8rem;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.blog-title,
.gallery-title,
.mehendi-hero h1 {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.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;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.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 #fff;
  background: 0 0;
  border-radius: 50px;
}
.btn-outline-custom:hover {
  background: #fff;
  color: var(--primary-color);
  transform: translateY(-3px);
}
.stats-item {
  text-align: center;
  color: #fff;
  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: 0.3s;
}
.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;
}
.filter-btn.active,
.filter-btn:hover,
.section-title {
  color: var(--primary-color);
}
.article-image:hover,
.gallery-item:hover {
  transform: scale(1.03);
}
.gallery-overlay {
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
}
.gallery-info {
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.4s;
}
.blog-meta,
.blog-title,
.fade-in-up {
  transform: translateY(30px);
}
.gallery-item:hover .gallery-caption,
.gallery-item:hover .gallery-info {
  transform: translateY(0);
}
.gallery-category {
  background: var(--secondary-color);
  color: var(--primary-color);
  display: inline-block;
}
.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: #fff;
  transition: 0.4s;
}
.custom-card:hover,
.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%;
  border: 3px solid var(--secondary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  transition: 0.3s;
  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: #fff;
  flex-shrink: 0;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(139, 21, 56, 0.2);
}
.whatsapp-btn {
  background: #25d366;
  border: none;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.4s;
  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: #fff;
}
.footer {
  background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
  color: rgba(255, 255, 255, 0.9);
  padding: 6rem 0 2rem;
  position: relative;
}
#contactus,
#plan,
.btn:hover,
.footer h5 {
  color: #fff;
}
.footer::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at top left,
    rgba(212, 175, 55, 0.08),
    transparent
  );
  top: -50%;
  left: -50%;
}
.footer h5::after,
.footer::after {
  content: "";
  position: absolute;
  background: linear-gradient(to right, #d4af37, transparent);
}
.footer::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}
.footer h3 {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.footer h5 {
  margin-bottom: 1.8rem;
  position: relative;
  padding-bottom: 0.6rem;
  font-weight: 500;
}
.footer h5::after {
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
}
.footer a {
  color: rgba(255, 255, 255, 0.75);
  transition: 0.3s;
  display: inline-block;
}
.footer a:hover {
  color: #d4af37;
  transform: translateX(6px);
}
.footer ul li {
  margin-bottom: 10px;
}
.social-icons {
  margin-top: 1rem;
}
.social-icons a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  color: #d4af37;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.4s;
}
.social-icons a:hover {
  background: #d4af37;
  color: #1a1a1a;
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}
.footer i {
  font-size: 1rem;
}
.footer hr {
  border-color: rgba(255, 255, 255, 0.1);
}
.footer .small {
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}
.footer .small a:hover {
  color: #d4af37;
  transform: none;
}
@media (max-width: 768px) {
  .footer {
    padding: 4rem 0 2rem;
    text-align: center;
  }
  .footer h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .social-icons a {
    margin: 5px;
  }
}
.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: 0.4s;
  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);
}
.fade-in-up {
  transition: 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.content-section.animate,
.fade-in-up.animate,
.gallery-container.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;
}
.bg-cream {
  background-color: var(--cream-color);
}
.bg-soft-pink {
  background-color: var(--soft-pink);
}
.bg-light-gray {
  background-color: var(--light-gray);
}
.floating {
  animation: 6s ease-in-out infinite floating;
}
.fade-in-up {
  opacity: 0;
  animation: 0.8s forwards fadeUp;
}
.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer .col-lg-3:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}
@keyframes floating {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@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;
  }
}
.blog-category,
.design-tag {
  right: 15px;
  font-weight: 600;
}
.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;
}
::-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;
}
.btn-outline-primary {
  color: #a32e52;
  border-color: #a32e52;
}
.btn:hover {
  background-color: #a32e52;
  border-color: #a32e52;
}
#about .bg-gradient-warm,
#services .bg-gradient-warm {
  margin: auto auto 20px;
}
.nav-link.active {
  color: var(--secondary-color) !important;
  font-weight: 700;
}
#contactForm {
  margin-top: 10px;
}
#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, visibility 0.5s;
}
.preloader-logo {
  font-size: 2.5rem;
  font-weight: 700;
  color: #8b1538;
  margin-bottom: 2rem;
}
.preloader-logo span {
  color: #d4af37;
}
.loader {
  width: 80px;
  height: 80px;
  position: relative;
}
.loader-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 8px solid rgba(139, 21, 56, 0.1);
  border-radius: 50%;
}
.loader-ring:first-child {
  border-bottom-color: #8b1538;
  animation: 2s linear infinite rotate1;
}
.loader-ring:nth-child(2) {
  border-right-color: #d4af37;
  animation: 2s linear infinite rotate2;
}
.loader-ring:nth-child(3) {
  border-top-color: #8b1538;
  animation: 2s linear infinite rotate3;
}
@keyframes rotate1 {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0);
  }
  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}
@keyframes rotate2 {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0);
  }
  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}
@keyframes rotate3 {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0);
  }
  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;
}
.drop-cap::first-letter,
.faq-question-btn,
.sidebar-title {
  font-family: "Playfair Display", serif;
}
.blog-category,
.tag-cloud a:hover {
  background: var(--secondary-color);
  color: #fff;
}
.loading-text:after {
  content: "...";
  animation: 1.5s steps(5, end) infinite dots;
}
@keyframes dots {
  0%,
  20% {
    content: ".";
  }
  40% {
    content: "..";
  }
  100%,
  60% {
    content: "...";
  }
}
#content {
  opacity: 0;
  transition: opacity 0.5s;
}
.gallery-item:hover .gallery-overlay,
body.loaded #content {
  opacity: 1;
}
body.loaded #preloader {
  opacity: 0;
  visibility: hidden;
}
.blog-card {
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
.blog-card:hover,
.decor-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.blog-category {
  position: absolute;
  top: 15px;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
}
.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 {
  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: 0.3s;
  color: #6c757d;
}
.popular-post {
  display: flex;
  margin-bottom: 15px;
  align-items: center;
}
.popular-post-img {
  width: 80px;
  height: 80px;
  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;
}
.content-card {
  margin-top: 65px;
}
.navbar-nav {
  margin-left: 30px !important;
}
.design-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
  height: 100%;
}
.design-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.design-card img {
  height: 300px;
  width: 100%;
}
.design-card .card-body {
  background: var(--cream-color);
  padding: 20px;
}
.design-tag {
  position: absolute;
  top: 15px;
  background: #d4af36;
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
}
.decor-item {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
  height: 100%;
}
.decor-icon,
.timeline:before {
  background: var(--secondary-color);
}
.decor-icon,
.timeline-dot {
  border-radius: 50%;
  display: flex;
  align-items: center;
}
.decor-icon {
  width: 70px;
  height: 70px;
  color: var(--primary-color);
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.timeline {
  position: relative;
  padding-left: 3rem;
}
.timeline:before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 3px;
}
.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: #fff;
  justify-content: center;
  font-size: 1.2rem;
}
.blog-content,
.custom-card,
.mehendi-cta,
.mehendi-hero,
.section-title {
  position: relative;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
}
.mehendi-cta {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0,
    var(--accent-color) 100%
  );
  color: #fff;
  border-radius: 15px;
}
.mehendi-cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://images.unsplash.com/photo-1529632316986-85a028b9d641?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80")
    center/cover;
  opacity: 0.1;
}
@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("../images/photo-1583939003579-730e3918a45a.jpeg") center/cover
      no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
}
.mehendi-hero h1 {
  font-size: 4rem;
}
.section-title:after {
  content: "";
  background: var(--secondary-color);
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}
.section-padding {
  padding: 2rem 0;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: inline-block;
}
.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 3rem;
}
.custom-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(139, 21, 56, 0.08);
  transition: 0.4s;
  height: 100%;
  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;
}
.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: #fff;
  box-shadow: 0 5px 15px rgba(139, 21, 56, 0.2);
}
.content-card {
  background: #fff;
  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-hero,
.gallery-hero {
  height: 70vh;
  min-height: 500px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/photo-1583939003579-730e3918a45a.jpeg") center/cover
      no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::after,
.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;
}
.blog-title {
  font-size: 3.5rem;
  line-height: 1.2;
  opacity: 0;
  transition: 1s;
}
.author-card.animate,
.blog-article.animate,
.blog-meta.animate,
.blog-title.animate,
.comment-card.animate,
.filter-controls.animate,
.gallery-title.animate {
  transform: translateY(0);
  opacity: 1;
}
.blog-meta {
  opacity: 0;
  transition: 1s 0.3s;
}
.blog-content {
  z-index: 2;
  margin-top: -50px;
}
.filter-btn,
.stat-item {
  z-index: 1;
  position: relative;
}
.blog-article {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(50px);
  opacity: 0;
  transition: 1s 0.6s;
}
.author-card,
.comment-card,
.content-section,
.filter-controls,
.gallery-container,
.gallery-title {
  transform: translateY(30px);
  opacity: 0;
}
.article-image {
  width: 100%;
  height: 500px;
  transition: transform 0.5s;
}
.article-body {
  padding: 3rem;
}
.author-card,
.blockquote-custom {
  background: var(--cream);
  padding: 2rem;
}
.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);
}
.content-section {
  transition: 0.8s;
}
.blockquote-custom {
  border-left: 5px solid var(--secondary-color);
  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 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 2rem 0;
}
.gallery-item {
  cursor: pointer;
  height: 200px;
}
.gallery-item:hover .gallery-img,
.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 {
  display: flex;
  align-items: center;
  border-radius: 10px;
  margin: 3rem 0;
  transition: 0.8s 1s;
}
.author-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 2rem;
  border: 3px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.comment-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.5s;
}
.comment-meta {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.comment-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
}
@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-title {
  font-size: 4rem;
  line-height: 1.2;
  transition: 1s;
}
.filter-controls {
  margin: 3rem 0;
  transition: 1s 0.3s;
}
.filter-btn {
  border: none;
  background: 0 0;
  color: var(--dark);
  font-weight: 500;
  margin: 0 0.5rem;
}
.filter-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: 0.3s;
}
.filter-btn.active::after,
.filter-btn:hover::after {
  width: 100%;
  left: 0;
}
.gallery-container {
  transition: 1s 0.6s;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.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%;
  transition: transform 0.5s;
}
.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;
}
.Kankupagala-process,
.valamain {
  text-align: center;
  display: block;
}
.gallery-category {
  background: var(--secondary-color);
  color: #fff;
  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: #fff;
  font-size: 1.25rem;
  margin-bottom: 0;
  transform: translateY(10px);
  transition: transform 0.3s;
}
.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);
}
.stats-section::after,
.stats-section::before {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
  position: absolute;
}
.stats-section {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 5rem 0;
  margin: 5rem 0;
  color: #fff;
  position: relative;
}
.stats-section::before {
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
}
.stats-section::after {
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
}
.stat-item {
  text-align: center;
  padding: 1rem;
}
.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}
.stat-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}
@media (max-width: 992px) {
  .gallery-title {
    font-size: 3rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}
@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item {
    margin: auto !important;
  }
  .mehendi-cta .btn-warning {
    margin-bottom: 10%;
  }
}
.filter-btn {
  transition: 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: #fff !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 {
  transform: scale(0.95);
  opacity: 0;
  transition: 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: 0.4s cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
@keyframes fadeIn {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.gallery-item.filter-animate {
  animation: 0.6s ease-out forwards fadeIn;
}
.filter-btn .ripple {
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: scale(0);
  opacity: 1;
  animation: 0.6s linear ripple;
}
@keyframes ripple {
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}
.gallery-item.loading {
  position: relative;
  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: 1.5s infinite shimmer;
}
@keyframes shimmer {
  100% {
    left: 100%;
  }
}
.Kankupagala-process {
  height: 500px;
  margin: auto;
}
.valamain {
  height: 450px;
  margin: auto;
}
.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: 0 !important;
  }
  .navbar-brand {
    font-size: 1.2rem !important;
  }
}
.faq-hero {
  background: linear-gradient(
    135deg,
    rgba(139, 21, 56, 0.08) 0,
    rgba(212, 163, 115, 0.05) 100%
  );
  padding: 120px 0 70px;
  border-bottom: 1px solid rgba(139, 21, 56, 0.1);
}
.faq-accordion-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
.faq-card {
  background: #fff;
  border-radius: 20px;
  border: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.02);
  transition: 0.3s;
  margin-bottom: 1.25rem;
}
.faq-card:hover {
  box-shadow: 0 20px 35px rgba(139, 21, 56, 0.08);
  transform: translateY(-2px);
}
.faq-question-btn {
  width: 100%;
  text-align: left;
  background: #fff;
  border: none;
  padding: 1.3rem 1.8rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-color, #8b1538);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.2s;
  cursor: pointer;
  border-radius: 0;
}
.faq-question-btn:focus {
  outline: 0;
  box-shadow: none;
}
.faq-question-btn:active {
  background-color: #fef6f0;
}
.faq-question-text {
  flex: 1;
  font-size: 1.1rem;
  letter-spacing: -0.2px;
  line-height: 1.4;
  font-weight: 600;
}
.faq-icon-wrapper {
  margin-left: 1rem;
  background: rgba(212, 163, 115, 0.15);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.faq-icon-wrapper i {
  font-size: 0.9rem;
  color: var(--secondary-color, #d4a373);
  transition: transform 0.3s;
}
.faq-question-btn[aria-expanded="true"] .faq-icon-wrapper i {
  transform: rotate(45deg);
}
.faq-question-btn[aria-expanded="true"] .faq-icon-wrapper {
  background: rgba(139, 21, 56, 0.1);
}
.faq-answer-panel {
  padding: 0 1.8rem 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  background: #fffefc;
  font-size: 1rem;
  line-height: 1.65;
  color: #4a4a4a;
}
.faq-answer-panel p:last-child {
  margin-bottom: 0;
}
.faq-answer-panel ol,
.faq-answer-panel ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}
.faq-answer-panel li {
  margin-bottom: 0.4rem;
}
.faq-category-tag {
  display: inline-block;
  background: rgba(212, 163, 115, 0.2);
  padding: 0.2rem 0.8rem;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--secondary-color, #b87c4e);
  margin-left: 0.75rem;
  vertical-align: middle;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}
.faq-help-banner {
  background: linear-gradient(105deg, #fff6f0 0, #fffbf7 100%);
  border-radius: 28px;
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 3rem;
  border: 1px solid rgba(212, 163, 115, 0.25);
}
@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;
  }
  .faq-question-btn {
    padding: 1rem 1.2rem;
  }
  .faq-question-text {
    font-size: 1rem;
  }
  .faq-answer-panel {
    padding: 0 1.2rem 1.2rem;
  }
  .faq-icon-wrapper {
    width: 28px;
    height: 28px;
  }
  .faq-category-tag {
    display: none;
  }
}
.collapse {
  transition: height 0.25s;
}
.faq-card:has(.faq-question-btn[aria-expanded="true"]) {
  box-shadow: 0 15px 35px rgba(139, 21, 56, 0.12);
  border-left: 3px solid var(--secondary-color, #d4a373);
}
.footer::before,
.footer::after {
    pointer-events: none;
}