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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  background: #fff;
}

.container {
  margin: auto;
  padding: 0 30px;
  max-width: 1400px;
}

.header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(201, 168, 106, 0.15);
  box-shadow: 0 10px 40px rgba(109, 4, 27, 0.08);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 95px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: 110px;
  height: auto;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  transition: all 0.4s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.navbar {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 45px;
  list-style: none;
}

.nav-menu li a {
  position: relative;
  color: #1f1f1f;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 19px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.nav-menu li a::after {
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 2px;
  content: "";
  transform: translateX(-50%);
  background: linear-gradient(90deg, #6d041b, #c9a86a);
  transition: all 0.4s ease;
}

.nav-menu li a:hover, .nav-menu li a.active {
  color: #6d041b;
}

.nav-menu li a:hover::after, .nav-menu li a.active::after {
  width: 100%;
}

.menu-toggle {
  border: none;
  width: 80px;
  height: 80px;
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 5px;
  background: rgba(0, 0, 0, 0);
  cursor: pointer;
  gap: 6px;
}

.menu-toggle span {
  border-radius: 2px;
  width: 100%;
  height: 3px;
  display: block;
  background-color: #6d041b;
  transition: all 0.4s ease;
}

.mobile-menu {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  padding: 25px;
  background: linear-gradient(180deg, #ffffff, #faf5ef);
  transition: 0.5s ease;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
  right: 0;
}

.mobile-top {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-top img {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
  object-fit: contain;
}

.close-menu {
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: rgba(109, 4, 27, 0.08);
}

.close-menu i {
  color: #6d041b;
  font-size: 22px;
}

.mobile-nav {
  list-style: none;
}

.mobile-nav li {
  margin-bottom: 18px;
}

.mobile-nav li a {
  color: #1f1f1f;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 24px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.mobile-nav li a:hover {
  padding-left: 8px;
  color: #6d041b;
}

.overlay {
  position: fixed;
  z-index: 998;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1200px) {
  .nav-menu {
    gap: 35px;
  }
  .nav-menu li a {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .navbar {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .header .container {
    padding: 0 20px;
    min-height: 85px;
  }
  .logo img {
    width: 80px;
    height: 75px;
  }
}
@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  .header .container {
    min-height: 75px;
  }
  .logo img {
    width: 75px;
    height: auto;
  }
  .menu-toggle {
    width: 38px;
    height: 38px;
    gap: 5px;
  }
  .menu-toggle span {
    height: 2.5px;
  }
  .mobile-menu {
    width: 280px;
    padding: 20px;
  }
  .mobile-top {
    margin-bottom: 30px;
  }
  .mobile-top img {
    width: 60px;
    height: 60px;
  }
  .mobile-nav li {
    margin-bottom: 15px;
  }
  .mobile-nav li a {
    font-size: 20px;
  }
}
.footer {
  position: relative;
  padding: 90px 0 0;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, #6d041b 0%, #430915 50%, #1a050b 100%);
}

.footer::before {
  position: absolute;
  content: "";
  inset: 0;
  background: radial-gradient(circle at top right, rgba(201, 168, 106, 0.15), transparent 35%), radial-gradient(circle at bottom left, rgba(201, 168, 106, 0.08), transparent 40%);
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
}

.footer-logo {
  margin-bottom: 25px;
  display: inline-block;
}

.footer-logo img {
  width: auto;
  height: 90px;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer-brand p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.9;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icons a {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.35s ease;
}

.social-icons a i {
  font-size: 17px;
}

.social-icons a:hover {
  color: #6d041b;
  background: #c9a86a;
  transform: translateY(-4px);
}

.footer-col h4 {
  position: relative;
  margin-bottom: 35px;
  font-weight: 600;
  font-size: 24px;
}

.footer-col h4::after {
  position: absolute;
  bottom: -12px;
  left: 0;
  border-radius: 50px;
  width: 60px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, #c9a86a, #f3d9a2);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 16px;
}

.footer-col ul li a {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  gap: 14px;
  text-decoration: none;
  line-height: 1.7;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  padding-left: 6px;
  color: #fff;
}

.footer-col ul li a i {
  border: 1px solid rgba(201, 168, 106, 0.25);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  color: #c9a86a;
  font-size: 13px;
  background: rgba(201, 168, 106, 0.15);
  transition: all 0.4s ease;
}

.footer-col ul li a:hover i {
  color: #6d041b;
  background: #c9a86a;
  transform: rotate(360deg);
}

.footer-contact-list li {
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  gap: 14px;
  line-height: 1.8;
}

.footer-contact-list li i {
  border: 1px solid rgba(201, 168, 106, 0.25);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  color: #c9a86a;
  font-size: 14px;
  background: rgba(201, 168, 106, 0.15);
  transition: all 0.35s ease;
}

.footer-contact-list li:hover i {
  color: #6d041b;
  background: #c9a86a;
  transform: translateY(-3px);
}

.footer-contact-list li a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-contact-list li a:hover {
  color: #fff;
}

.footer-contact-list li span {
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  padding: 25px 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  text-align: center;
  line-height: 1.8;
}

.footer-bottom .tripledots {
  color: #c9a86a;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-bottom .tripledots:hover {
  color: #fff;
}

@media (max-width: 991px) {
  .footer {
    padding-top: 70px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .footer-logo img {
    height: 80px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding-top: 60px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer-col h4 {
    font-size: 21px;
  }
  .footer-logo img {
    height: 70px;
  }
  .footer-brand p, .footer-col ul li a, .footer-contact-list li {
    font-size: 18px;
  }
  .social-icons a {
    width: 42px;
    height: 42px;
  }
  .footer-bottom {
    margin-top: 50px;
  }
}
@media (max-width: 480px) {
  .footer {
    padding-top: 50px;
  }
  .footer-logo img {
    height: 121px;
  }
  .footer-col h4 {
    font-size: 19px;
  }
  .footer-bottom p {
    font-size: 13px;
  }
}
.hero {
  position: relative;
  margin-top: 74px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 72px 0 84px;
  font-family: "Roboto", sans-serif;
  min-height: calc(90vh - 74px);
  overflow: hidden;
  isolation: isolate;
  background-image: linear-gradient(90deg, rgba(19, 7, 8, 0.72) 0%, rgba(19, 7, 8, 0.52) 34%, rgba(19, 7, 8, 0.18) 72%, rgba(19, 7, 8, 0.04) 100%), url("../images/bg-img-astro5.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 576px) {
  .hero {
    padding: 80px 0 92px;
  }
}
@media (min-width: 768px) {
  .hero {
    margin-top: 90px;
    padding: 100px 0 112px;
    min-height: calc(100vh - 90px);
    background-position: center right;
  }
}
@media (min-width: 1024px) {
  .hero {
    padding: 116px 0 128px;
  }
}
@media (max-width: 575px) {
  .hero {
    background-image: linear-gradient(90deg, rgba(19, 7, 8, 0.1) 0%, rgba(19, 7, 8, 0.18) 30%, rgba(19, 7, 8, 0.2) 55%, rgba(19, 7, 8, 0.32) 78%, rgba(19, 7, 8, 0.4) 100%), url("../images/bg-img-astro5.png");
    background-position: 75% center;
  }
}
.hero .hero-wrapper {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  max-width: 1440px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .hero .hero-wrapper {
    justify-content: flex-start;
    padding: 0 40px;
  }
}
@media (min-width: 1024px) {
  .hero .hero-wrapper {
    padding: 0 80px;
  }
}
@media (min-width: 1280px) {
  .hero .hero-wrapper {
    padding: 0 120px;
  }
}
.hero .hero-wrapper {
  position: relative;
}

.hero .hero-right-panel {
  position: absolute;
  z-index: 8;
  top: 35.9%;
  left: 58.2%;
  transform: translateY(-50%);
}

.hero .hero-right-panel .hero-image img {
  width: 545px;
  height: auto;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  animation: rotateWheel 35s linear infinite;
}

@media (max-width: 749px) {
  .hero .hero-right-panel {
    display: none;
  }
}
@keyframes rotateWheel {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.hero .hero-left-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .hero .hero-left-panel {
    max-width: 660px;
  }
}
@media (max-width: 575px) {
  .hero .hero-left-panel {
    align-items: center;
    text-align: center;
  }
}
.hero .hero-left-panel .hero-left-content {
  width: 100%;
  max-width: 620px;
}

@media (min-width: 768px) {
  .hero .hero-left-panel .hero-left-content {
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .hero .hero-left-panel .hero-left-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.hero .hero-left-panel .hero-subtitle {
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  color: #f5e3c3;
  font-weight: 600;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

@media (min-width: 576px) {
  .hero .hero-left-panel .hero-subtitle {
    margin-bottom: 22px;
    padding: 9px 18px;
    font-size: 12px;
  }
}
.hero .hero-left-panel h1 {
  margin-bottom: 20px;
  color: #fff;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.25rem, 4.3vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
}

@media (min-width: 576px) {
  .hero .hero-left-panel h1 {
    margin-bottom: 24px;
  }
}
@media (min-width: 768px) {
  .hero .hero-left-panel h1 {
    max-width: 620px;
  }
}
.hero .hero-left-panel h1 .highlight-text {
  margin-top: 0.2em;
  display: block;
  color: #ffd95e;
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-style: italic;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.hero .hero-left-panel .hero-description {
  margin-bottom: 30px;
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.86;
  max-width: 560px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (min-width: 576px) {
  .hero .hero-left-panel .hero-description {
    margin-bottom: 32px;
    font-size: 1.02rem;
  }
}
@media (max-width: 575px) {
  .hero .hero-left-panel .hero-description {
    max-width: 100%;
  }
}
.hero .hero-buttons {
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

@media (min-width: 576px) {
  .hero .hero-buttons {
    gap: 14px;
  }
}
@media (min-width: 768px) {
  .hero .hero-buttons {
    margin-bottom: 36px;
  }
}
@media (max-width: 575px) {
  .hero .hero-buttons {
    justify-content: center;
  }
}
.hero .hero-buttons a {
  border-radius: 6px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 13px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 360px) {
  .hero .hero-buttons a {
    min-width: 154px;
  }
}
@media (max-width: 575px) {
  .hero .hero-buttons a {
    width: 100%;
  }
}
.hero .hero-buttons .primary-btn {
  color: #6d041b;
  background: #ffd95e;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.hero .hero-buttons .primary-btn:hover {
  background: #bf962f;
  transform: translateY(-2px);
}

.hero .hero-buttons .secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #6d041b;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.hero .hero-buttons .secondary-btn:hover {
  color: #4b0b16;
  background: #f7f2ea;
  transform: translateY(-2px);
}

.hero .hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 24px;
  gap: 16px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

@media (min-width: 576px) {
  .hero .hero-stats {
    padding-top: 28px;
    gap: 20px 36px;
  }
}
@media (max-width: 575px) {
  .hero .hero-stats {
    justify-content: center;
    text-align: center;
  }
}
.hero .hero-stats .stat-card {
  padding-right: 20px;
  min-width: 0;
}

.hero .hero-stats .stat-card:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 575px) {
  .hero .hero-stats .stat-card {
    width: 100%;
    padding-right: 0;
  }
  .hero .hero-stats .stat-card:not(:last-child) {
    padding-bottom: 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
}
.hero .hero-stats .stat-card h3 {
  margin-bottom: 4px;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (min-width: 576px) {
  .hero .hero-stats .stat-card h3 {
    font-size: 2rem;
  }
}
.hero .hero-stats .stat-card p {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.graha-orbit-universe {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: -10%;
  width: 100%;
  height: 100%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.14;
}

@media (max-width: 1023px) {
  .graha-orbit-universe {
    display: none;
  }
}
.home-about {
  position: relative;
  padding: 100px 0;
  background: #f6f5f4;
  overflow: hidden;
}

.home-about .container {
  margin: auto;
  padding: 0 30px;
  max-width: 1400px;
}

.home-about-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.home-about-image {
  position: relative;
  display: flex;
  justify-content: center;
  flex: 1;
}

.home-about-image .image-box {
  border: 2px solid rgba(201, 168, 106, 0.3);
  border-radius: 20px;
  width: 420px;
  height: 500px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(109, 4, 27, 0.15);
}

.home-about-image .image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.5s ease;
}

.home-about-image .image-box img:hover {
  transform: scale(1.05);
}

.home-about-image .experience-badge {
  position: absolute;
  bottom: -32px;
  left: 200px;
  border-radius: 12px;
  padding: 18px 22px;
  color: #fff;
  background: linear-gradient(135deg, #fff4c2 0%, #f8dd83 20%, #e8c55a 45%, #cfa43b 70%, #9b6c18 100%);
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.home-about-image .experience-badge h3 {
  margin-bottom: 4px;
  color: #fff;
  font-size: 34px;
}

.home-about-image .experience-badge p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  letter-spacing: 1px;
}

.home-about-content {
  flex: 1;
}

.home-about-content .section-subtitle {
  margin-bottom: 20px;
  border-radius: 30px;
  display: inline-block;
  padding: 6px 14px;
  color: #6d041b;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: rgba(201, 168, 106, 0.1);
}

.home-about-content h2 {
  margin-bottom: 20px;
  color: #1f1f1f;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.3;
}

.home-about-content h2 span {
  position: relative;
  color: #6d041b;
}

.home-about-content h2 span::after {
  position: absolute;
  z-index: -1;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  content: "";
  background: rgba(201, 168, 106, 0.25);
}

.home-about-content p {
  margin-bottom: 15px;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.8;
}

.home-about-highlights {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.home-about-highlights .highlight-item {
  border: 1px solid rgba(109, 4, 27, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  gap: 10px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.home-about-highlights .highlight-item i {
  color: #c9a86a;
  font-size: 14px;
}

.home-about-highlights .highlight-item span {
  color: #1f1f1f;
  font-weight: 500;
  font-size: 13px;
}

.home-about-highlights .highlight-item:hover {
  border-color: rgba(201, 168, 106, 0.5);
  transform: translateY(-4px);
}

.home-about-buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.home-about-buttons .primary-btn {
  border-radius: 8px;
  padding: 14px 30px;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(135deg, #6d041b, #430915);
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(109, 4, 27, 0.2);
}

.home-about-buttons .primary-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #430915, #6d041b);
}

.home-about-buttons .secondary-btn {
  border: 1px solid rgba(109, 4, 27, 0.3);
  border-radius: 8px;
  padding: 14px 30px;
  color: #6d041b;
  font-weight: 600;
  background: rgba(0, 0, 0, 0);
  text-decoration: none;
  transition: all 0.4s ease;
}

.home-about-buttons .secondary-btn:hover {
  color: #fff;
  background: #6d041b;
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .home-about-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .home-about-image .image-box {
    width: 320px;
    height: 400px;
  }
  .home-about-image .experience-badge {
    left: 10px;
  }
  .home-about-content h2 {
    font-size: 32px;
  }
  .home-about-highlights {
    justify-content: center;
  }
  .home-about-buttons {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .home-about {
    padding: 70px 0;
  }
  .home-about-image .image-box {
    width: 280px;
    height: 350px;
  }
  .home-about-content h2 {
    font-size: 26px;
  }
  .home-about-highlights {
    flex-direction: column;
    align-items: center;
  }
}
.section-heading {
  margin: 0 auto 60px;
  text-align: center;
  max-width: 750px;
}

.section-heading .section-subtitle {
  margin-bottom: 18px;
  border-radius: 30px;
  display: inline-block;
  padding: 8px 18px;
  color: #6d041b;
  font-weight: 600;
  font-size: 13px;
  background: rgba(201, 168, 106, 0.12);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-heading h2 {
  color: #1f1f1f;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.3;
}

.section-heading h2 span {
  position: relative;
  color: #6d041b;
}

.section-heading h2 span::after {
  position: absolute;
  z-index: -1;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 8px;
  content: "";
  background: rgba(201, 168, 106, 0.25);
}

.about-journey {
  padding: 100px 0;
  background: #fff;
}

.about-journey .journey-content {
  margin: auto;
  max-width: 900px;
  text-align: center;
}

.about-journey .journey-content p {
  margin-bottom: 20px;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.9;
}

.mission-vision {
  padding: 100px 0;
  background: #faf7f2;
}

.mission-vision .mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.mission-vision .mission-card {
  border: 1px solid rgba(109, 4, 27, 0.08);
  border-radius: 20px;
  padding: 40px;
  background: #fff;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.mission-vision .mission-card:hover {
  transform: translateY(-8px);
}

.mission-vision .mission-card i {
  margin: 0 auto 25px;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #c9a86a;
  font-size: 30px;
  background: linear-gradient(135deg, #6d041b, #430915);
}

.mission-vision .mission-card h3 {
  margin-bottom: 15px;
  color: #1f1f1f;
  font-size: 28px;
}

.mission-vision .mission-card p {
  color: #4b5563;
  font-size: 17px;
  line-height: 1.9;
}

.why-choose-us {
  padding: 100px 0;
  background: #fff;
}

.why-choose-us .why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.why-choose-us .why-card {
  border: 1px solid rgba(109, 4, 27, 0.08);
  border-radius: 18px;
  padding: 35px 25px;
  background: #fff;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.why-choose-us .why-card:hover {
  border-color: rgba(201, 168, 106, 0.4);
  transform: translateY(-8px);
}

.why-choose-us .why-card i {
  margin: 0 auto 20px;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6d041b;
  font-size: 24px;
  background: rgba(201, 168, 106, 0.12);
}

.why-choose-us .why-card h3 {
  margin-bottom: 12px;
  color: #1f1f1f;
  font-size: 20px;
}

.why-choose-us .why-card p {
  color: #4b5563;
  font-size: 17px;
  line-height: 1.8;
}

@media (max-width: 992px) {
  .section-heading h2 {
    font-size: 34px;
  }
  .mission-vision .mission-grid {
    grid-template-columns: 1fr;
  }
  .why-choose-us .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .about-journey, .mission-vision, .why-choose-us {
    padding: 70px 0;
  }
  .section-heading {
    margin-bottom: 40px;
  }
  .section-heading h2 {
    font-size: 28px;
  }
  .why-choose-us .why-grid {
    grid-template-columns: 1fr;
  }
  .mission-vision .mission-card {
    padding: 30px 20px;
  }
  .why-card {
    padding: 30px 20px;
  }
}
@media (max-width: 576px) {
  .section-heading h2 {
    font-size: 24px;
  }
  .about-journey .journey-content p {
    font-size: 14px;
  }
  .mission-vision .mission-card h3 {
    font-size: 24px;
  }
  .why-card h3 {
    font-size: 18px;
  }
}
.services {
  position: relative;
  padding: 100px 0;
  background: #f6f5f4;
  overflow: hidden;
}

.section-header {
  margin: 0 auto 60px;
  text-align: center;
  max-width: 750px;
}

.section-header .section-subtitle {
  margin-bottom: 18px;
  border-radius: 30px;
  display: inline-block;
  padding: 6px 14px;
  color: #6d041b;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: rgba(201, 168, 106, 0.12);
}

.section-header h2 {
  margin-bottom: 15px;
  color: #1f1f1f;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.3;
}

.section-header h2 span {
  position: relative;
  color: #6d041b;
}

.section-header h2 span::after {
  position: absolute;
  z-index: -1;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 8px;
  content: "";
  background: rgba(201, 168, 106, 0.25);
}

.section-header p {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  position: relative;
  border: 1px solid rgba(109, 4, 27, 0.08);
  border-radius: 16px;
  padding: 30px 25px;
  background: #fff;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.service-card i {
  margin-bottom: 18px;
  display: inline-block;
  color: #c9a86a;
  font-size: 30px;
  transition: all 0.4s ease;
}

.service-card h3 {
  margin-bottom: 10px;
  color: #1f1f1f;
  font-weight: 600;
  font-size: 20px;
}

.service-card p {
  color: #4b5563;
  font-size: 17px;
  line-height: 1.7;
}

.service-card::before {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  content: "";
  background: linear-gradient(135deg, #6d041b, #430915);
  transition: all 0.4s ease;
}

.service-card * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(109, 4, 27, 0.15);
}

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

.service-card:hover i, .service-card:hover h3, .service-card:hover p {
  color: #fff;
}

.service-card:hover i {
  color: #c9a86a;
  transform: scale(1.2);
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-header h2 {
    font-size: 34px;
  }
}
@media (max-width: 576px) {
  .services {
    padding: 70px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .section-header h2 {
    font-size: 26px;
  }
}
.gallery {
  position: relative;
  padding: 100px 0;
  background: #fcfaf6;
  overflow: hidden;
}

.section-header {
  margin: 0 auto 60px;
  text-align: center;
  max-width: 750px;
}

.section-header .section-subtitle {
  margin-bottom: 18px;
  border-radius: 30px;
  display: inline-block;
  padding: 6px 14px;
  color: #6d041b;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: rgba(201, 168, 106, 0.12);
}

.section-header h2 {
  margin-bottom: 15px;
  color: #1f1f1f;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.3;
}

.section-header h2 span {
  position: relative;
  color: #6d041b;
}

.section-header h2 span::after {
  position: absolute;
  z-index: -1;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 8px;
  content: "";
  background: rgba(201, 168, 106, 0.25);
}

.section-header p {
  color: #4b5563;
  font-size: 18px;
  line-height: 1.8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-item {
  position: relative;
  border: 1px solid rgba(109, 4, 27, 0.08);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

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

.gallery-item .overlay {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  inset: 0;
  background: linear-gradient(to top, rgba(109, 4, 27, 0.85), rgba(0, 0, 0, 0.1));
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-item .overlay h3 {
  margin-bottom: 20px;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  transform: translateY(20px);
  transition: all 0.4s ease;
  letter-spacing: 1px;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(109, 4, 27, 0.18);
}

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

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

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

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-header h2 {
    font-size: 34px;
  }
}
@media (max-width: 576px) {
  .gallery {
    padding: 70px 0;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item img {
    height: 240px;
  }
  .section-header h2 {
    font-size: 26px;
  }
}
.contact {
  width: 100%;
  padding: clamp(60px, 6vw, 100px) 0;
  background: #f6f5f4;
  overflow-x: hidden;
}

.container {
  margin: 0 auto;
  width: 100%;
  padding: 0 16px;
  max-width: 1200px;
}

.section-header {
  margin: 0 auto 50px;
  text-align: center;
  max-width: 750px;
}

.section-header .section-subtitle {
  margin-bottom: 15px;
  border-radius: 30px;
  display: inline-block;
  padding: 6px 12px;
  color: #6d041b;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(201, 168, 106, 0.15);
}

.section-header h2 {
  color: #1f1f1f;
  font-weight: 600;
  font-size: clamp(22px, 3vw, 40px);
}

.section-header h2 span {
  color: #6d041b;
}

.section-header p {
  margin-top: 10px;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.7;
}

.contact-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 30px;
}

.contact-info, .contact-form {
  width: 100%;
  flex: 1 1 400px;
  min-width: 0;
}

.contact-card {
  border: 1px solid rgba(109, 4, 27, 0.08);
  border-radius: 14px;
  width: 100%;
  padding: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-item {
  border-radius: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 14px;
  gap: 12px;
  transition: all 0.3s ease;
}

.contact-item:not(:last-child) {
  margin-bottom: 10px;
}

.contact-item:hover {
  background: rgba(201, 168, 106, 0.08);
  transform: translateY(-2px);
}

.contact-item .icon-circle {
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #6d041b, #430915);
}

.contact-item .icon-circle i {
  color: #fff;
  font-size: 15px;
}

.contact-item .info-text {
  flex: 1;
  min-width: 0;
}

.contact-item .info-text h4 {
  margin-bottom: 3px;
  color: #1f1f1f;
  font-size: 15px;
}

.contact-item .info-text a, .contact-item .info-text span {
  color: #4b5563;
  font-size: 13px;
  word-break: break-word;
}

.contact-form {
  border: 1px solid rgba(109, 4, 27, 0.08);
  border-radius: 14px;
  width: 100%;
  padding: 25px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form .input-group {
  width: 100%;
}

.contact-form .input-group input, .contact-form .input-group select, .contact-form .input-group textarea {
  border: 1px solid rgba(109, 4, 27, 0.15);
  border-radius: 8px;
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
  transition: 0.3s ease;
}

.contact-form .input-group input:focus, .contact-form .input-group select:focus, .contact-form .input-group textarea:focus {
  border-color: #c9a86a;
  box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.15);
}

.contact-form .input-group textarea {
  resize: none;
  min-height: 120px;
}

.contact-form .submit-btn {
  border: none;
  border-radius: 8px;
  width: 100%;
  padding: 12px;
  color: #fff;
  font-size: 14px;
  background: linear-gradient(135deg, #6d041b, #430915);
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form .submit-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .contact-wrapper {
    gap: 20px;
  }
  .contact-info, .contact-form {
    width: 100%;
    flex: 1 1 100%;
  }
}
@media (max-width: 576px) {
  .container {
    padding: 0 14px;
  }
  .contact {
    padding: 50px 0;
  }
  .contact-card, .contact-form {
    padding: 16px;
  }
  .contact-item {
    padding: 10px;
  }
  .icon-circle {
    width: 40px;
    height: 40px;
  }
  .icon-circle i {
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .contact-card, .contact-form {
    padding: 14px;
  }
  .icon-circle {
    width: 36px;
    height: 36px;
  }
}
.contact-map {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.map-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.map-wrapper iframe {
  border: 0;
  width: 100%;
  height: 400px;
  display: block;
  filter: grayscale(10%);
}

@media (max-width: 992px) {
  .map-wrapper iframe {
    height: 420px;
  }
}
@media (max-width: 768px) {
  .contact-map, .map-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .map-wrapper iframe {
    width: 100%;
    height: 350px;
  }
}
@media (max-width: 576px) {
  .contact-map {
    margin: 0;
    padding: 0;
  }
  .map-wrapper iframe {
    height: 280px;
  }
}
.appointment-page {
  padding: 100px 0;
  background: #faf7f2;
  overflow: hidden;
}

.appointment-page .container {
  margin: auto;
  padding: 0 120px;
  max-width: 1400px;
}

.section-heading {
  margin: 0 auto 70px;
  text-align: center;
  max-width: 750px;
}

.section-heading .section-subtitle {
  margin-bottom: 18px;
  border-radius: 30px;
  display: inline-block;
  padding: 8px 18px;
  color: #6d041b;
  font-weight: 600;
  font-size: 13px;
  background: rgba(201, 168, 106, 0.12);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-heading h1 {
  margin-bottom: 20px;
  color: #1f1f1f;
  font-size: 48px;
  line-height: 1.3;
}

.section-heading h1 span {
  position: relative;
  color: #6d041b;
}

.section-heading h1 span::after {
  position: absolute;
  z-index: -1;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 8px;
  content: "";
  background: rgba(201, 168, 106, 0.25);
}

.section-heading p {
  color: #4b5563;
  font-size: 18px;
  line-height: 1.9;
}

.appointment-wrapper {
  display: grid;
  align-items: start;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.appointment-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.content-card {
  border: 1px solid rgba(109, 4, 27, 0.08);
  border-radius: 20px;
  padding: 35px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.content-card .content-icon {
  margin-bottom: 25px;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #6d041b, #430915);
}

.content-card .content-icon i {
  color: #c9a86a;
  font-size: 28px;
}

.content-card h3 {
  margin-bottom: 15px;
  color: #1f1f1f;
  font-size: 28px;
}

.content-card p {
  color: #4b5563;
  font-size: 18px;
  line-height: 1.9;
}

.appointment-features {
  border: 1px solid rgba(109, 4, 27, 0.08);
  border-radius: 20px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.appointment-features .feature-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  gap: 14px;
}

.appointment-features .feature-item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.appointment-features .feature-item i {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  color: #6d041b;
  font-size: 12px;
  background: rgba(201, 168, 106, 0.15);
}

.appointment-features .feature-item span {
  color: #1f1f1f;
  font-weight: 500;
  font-size: 18px;
}

.appointment-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.info-box {
  border: 1px solid rgba(109, 4, 27, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  padding: 20px;
  background: #fff;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.info-box i {
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #c9a86a;
  font-size: 20px;
  background: linear-gradient(135deg, #6d041b, #430915);
}

.info-box h4 {
  margin-bottom: 4px;
  color: #1f1f1f;
}

.info-box p {
  color: #4b5563;
  font-size: 14px;
}

.appointment-form {
  border: 1px solid rgba(109, 4, 27, 0.08);
  border-radius: 24px;
  padding: 40px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  margin-bottom: 10px;
  display: block;
  color: #1f1f1f;
  font-weight: 600;
  font-size: 14px;
}

.input-group input, .input-group select, .input-group textarea {
  border: 1px solid rgba(109, 4, 27, 0.12);
  border-radius: 12px;
  width: 100%;
  padding: 15px 18px;
  color: #1f1f1f;
  font-size: 14px;
  outline: none;
  transition: 0.3s ease;
}

.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
  border-color: #c9a86a;
  box-shadow: 0 0 0 4px rgba(201, 168, 106, 0.15);
}

.input-group textarea {
  resize: none;
}

.appointment-btn {
  border: none;
  border-radius: 12px;
  width: 100%;
  padding: 16px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  background: linear-gradient(135deg, #6d041b, #430915);
  transition: 0.4s ease;
}

.appointment-btn:hover {
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .appointment-wrapper {
    grid-template-columns: 1fr;
  }
  .section-heading h1 {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .appointment-page {
    padding: 70px 0;
  }
  .container {
    padding: 0 18px !important;
  }
  .section-heading {
    margin-bottom: 50px;
  }
  .section-heading h1 {
    font-size: 30px;
  }
  .appointment-form {
    padding: 25px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .content-card {
    padding: 25px;
  }
  .content-card h3 {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .appointment-page {
    overflow-x: hidden;
  }
  .container {
    width: 100%;
    padding: 0 15px !important;
    max-width: 100%;
  }
  .section-heading h1 {
    font-size: 26px;
  }
  .appointment-form, .content-card, .appointment-features, .info-box {
    width: 100%;
    max-width: 100%;
  }
  .appointment-form {
    padding: 20px;
  }
  .appointment-btn {
    padding: 14px;
  }
}
.upcoming-puja {
  position: relative;
  padding: 110px 0;
  background: #fcfaf6;
  overflow: hidden;
}

.upcoming-puja .container {
  margin: auto;
  padding: 0 20px;
  max-width: 1320px;
}

.upcoming-puja .section-heading {
  margin-bottom: 65px;
  text-align: center;
}

.upcoming-puja .section-heading h2 {
  margin-bottom: 18px;
  color: #6d041b;
  font-weight: 700;
  font-size: 46px;
  letter-spacing: -0.5px;
}

.upcoming-puja .section-heading h2 span {
  color: #ba702b;
}

.upcoming-puja .section-heading p {
  margin: auto;
  color: #4b5563;
  font-size: 17px;
  max-width: 720px;
  line-height: 1.8;
}

.upcoming-puja .puja-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.upcoming-puja .puja-card {
  border: 1px solid rgba(201, 168, 106, 0.15);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.upcoming-puja .puja-card:hover {
  border-color: rgba(186, 112, 43, 0.35);
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(109, 4, 27, 0.12);
}

.upcoming-puja .puja-card:hover .card-image img {
  transform: scale(1.08);
}

.upcoming-puja .puja-card:hover h3 {
  color: #6d041b;
}

.upcoming-puja .puja-card:hover .book-btn {
  background: #6d041b;
}

.upcoming-puja .card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #f8f6f2;
}

.upcoming-puja .card-image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  transition: opacity 0.3s ease;
  transform: none !important;
  filter: none !important;
  image-rendering: crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  will-change: auto;
}

.upcoming-puja .card-image::after {
  display: none;
}

.upcoming-puja .special-tag {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  border-radius: 30px;
  padding: 8px 16px;
  color: #6d041b;
  font-weight: 600;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.upcoming-puja .card-body {
  padding: 26px;
}

.upcoming-puja .category {
  margin-bottom: 18px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  padding: 7px 15px;
  color: #ba702b;
  font-weight: 600;
  font-size: 13px;
  background: rgba(186, 112, 43, 0.08);
}

.upcoming-puja h3 {
  margin-bottom: 22px;
  color: #1f1f1f;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.45;
  transition: 0.3s;
}

.upcoming-puja ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.upcoming-puja ul li {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  color: #4b5563;
  font-size: 15px;
  gap: 12px;
}

.upcoming-puja ul li i {
  width: 18px;
  color: #ba702b;
  text-align: center;
}

.upcoming-puja .booked {
  margin: 18px 0 22px;
  border-radius: 30px;
  display: inline-block;
  padding: 8px 14px;
  color: #ef4444;
  font-weight: 500;
  font-size: 12px;
  background: #fff3f2;
}

.upcoming-puja .book-btn {
  border: none;
  border-radius: 14px;
  width: 100%;
  height: 54px;
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  background: linear-gradient(135deg, #ba702b, #995c23);
  transition: 0.35s;
}

.upcoming-puja .book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(186, 112, 43, 0.35);
}

.upcoming-puja .view-all {
  margin-top: 60px;
  text-align: center;
}

.upcoming-puja .view-all a {
  border: 1px solid rgba(201, 168, 106, 0.35);
  border-radius: 14px;
  width: 190px;
  height: 56px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #6d041b;
  font-weight: 600;
  text-decoration: none;
  transition: 0.35s;
}

.upcoming-puja .view-all a:hover {
  border-color: #6d041b;
  color: #fff;
  background: #6d041b;
}

@media (max-width: 1200px) {
  .upcoming-puja .puja-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .upcoming-puja {
    padding: 80px 0;
  }
  .upcoming-puja .section-heading {
    margin-bottom: 45px;
  }
  .upcoming-puja .section-heading h2 {
    font-size: 34px;
  }
  .upcoming-puja .section-heading p {
    font-size: 15px;
  }
  .upcoming-puja .puja-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .upcoming-puja .card-image {
    height: 210px;
  }
  .upcoming-puja .card-body {
    padding: 22px;
  }
  .upcoming-puja h3 {
    font-size: 21px;
  }
}
.book-btn {
  position: relative;
  border: none;
  border-radius: 14px;
  width: 100%;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  overflow: hidden;
  cursor: pointer;
  gap: 10px;
  background: linear-gradient(135deg, #ba702b 0%, #d07f34 50%, #8c4f1a 100%);
  letter-spacing: 0.3px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(186, 112, 43, 0.28);
}

.book-btn::before {
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-25deg);
  transition: 0.8s;
}

.book-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #6d041b, #540315);
  box-shadow: 0 18px 40px rgba(109, 4, 27, 0.28);
}

.book-btn:hover::before {
  left: 140%;
}

.book-btn:active {
  transform: translateY(0);
}

.book-btn i {
  font-size: 15px;
}

/*# sourceMappingURL=main.css.map */
