@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/lato/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/bebas-neue/BebasNeue-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces/Fraunces_72pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Jomolhari";
  src: url("../fonts/jomolhari/Jomolhari-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/Inter_18pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/Inter_18pt-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/Inter_18pt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/Inter_18pt-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "DM sans";
  src: url("../fonts/dm-sans/DMSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "DM sans";
  src: url("../fonts/dm-sans/DMSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/open-sans/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
/* -------------------------------------------------
Root Variables
---------------------------------------------------*/
:root {
  --primary-color: #92180d;
  --primary-color-dark: #650800;
  --secondary-color: #ffea00;
  --secondary-color-dark: #ffc400;
  --secondary-bg-dark: #ffd900;
  --white-color: #ffffff;
  --black-color: #000000;
  --white-color2: #fcfcfc;
  --liner-gradient: linear-gradient(180deg, #99100a -15.6%, #e75a08 95.05%);
  --liner-gradient-footer: linear-gradient(
    180deg,
    #99100a 66.26%,
    #e75a08 108.65%
  );
  --bebas-neue-font: "Bebas Neue";
  --fraunces-font: "Open Sans";
  --jomolhari-font: "Inter";
  --inter-font: "Inter";
  --dm-sans-font: "DM sans";
  --open-sans-font: "Open Sans";
  --roboto-font: "Roboto";
  --lato-font: "Lato";
  --fs-xs: 12px;
  --fs-sx: 14px;
  --fs-md: 16px;
  --fs-lg: 20px;
  --fs-xl: 24px;
  --fs-xxl: 26px;
  --title-fs: 40px;
}
/* ------------------------------------------------
Global Styles
------------------------------------------------- */
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}
body {
  font-family: var(--roboto-font);
  overflow-x: hidden;
  color: var(--black-color);
  font-size: 16px;
  text-align: justify;
}
header,
footer,
table {
  text-align: start;
}
a {
  text-decoration: none;
  color: var(--black-color);
}
p {
  font-family: var(--jomolhari-font);
}
ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.section {
  padding: 80px 0px;
}
.section-title {
  margin-bottom: 50px;
}
.section-title h2 {
  text-align: center;
  font-family: var(--fraunces-font);
  font-size: var(--title-fs);
  position: relative;
  color: var(--primary-color);
}
.section-title h2.yellow::after {
  content: "";
  background-image: url(../img/title/yellow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 15px;
  display: flex;
  width: 150px;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.section-title h2.brown::after {
  content: "";
  background-image: url(../img/title/brown.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 20px;
  display: flex;
  width: 150px;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.about-section-title h2.yellow::after {
  left: 0px;
  transform: unset;
}
.about-section .btn-mini,
.about-section .btn-mini:hover {
  color: var(--black-color);
  margin-top: 10px;
  background: var(--secondary-bg-dark);
  padding: 6px 16px;
  border-radius: 12px;
  border: 1px solid var(--secondary-bg-dark);
}
.about-section .btn-mini img {
  filter: brightness(0);
}
html {
  scroll-padding-top: 100px;
}
/* -----------------------------------------------------
Scrollbar Styles
----------------------------------------------------- */
::-webkit-scrollbar {
  width: 10px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color-dark);
}
/* -------------------------------------------------
Buttons
---------------------------------------------------- */
.btn-main {
  font-family: var(--lato-font);
  font-weight: 700;
  color: var(--white-color);
  background-color: var(--primary-color);
  box-shadow:
    0px -1.42px 1.42px 1.42px #3423aa40 inset,
    0px 1.42px 1.42px 1.42px #ffffff40 inset,
    0px 0px 0px 1.42px var(--primary-color-dark) inset,
    0px 1.42px 2.84px 0px var(--primary-color-dark);
  transition: all 0.3s ease;
  padding: 15px 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 14px;
  font-size: 18px;
}
.btn-main img {
  width: 14px;
}
.btn-main:hover {
  color: var(--white-color);
  background-color: var(--primary-color-dark);
}
.btn-outline-main {
  font-family: var(--lato-font);
  font-weight: 700;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  padding: 12px 24px;
  transition: all 0.3s ease;
}
.btn-outline-main:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-mini {
  background-color: var(--primary-color);
  color: var(--white-color);
  font-family: var(--inter-font);
  display: inline-flex;
  justify-content: center;
  gap: 10px;
  border-radius: 3px;
  transition: all 0.3s ease;
  padding: 3px 10px;
}
.btn-mini:hover {
  color: var(--white-color);
  background-color: var(--primary-color-dark);
  transform: translateY(-2px);
}
.btn-mini img {
  width: 14px;
}
.btn-mini-lg {
  background-color: var(--primary-color);
  color: var(--white-color);
  font-family: var(--inter-font);
  display: inline-flex;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  padding: 10px 16px;
  border-radius: 3px;
}
.btn-mini-lg:hover {
  color: var(--white-color);
  background-color: var(--primary-color-dark);
  transform: translateY(-2px);
}
.btn-mini-lg img {
  width: 14px;
}
.bg-light-brown {
  background-color: #fcf6ed;
}
/* -------------------------------------------------
Header
---------------------------------------------------- */
.header {
  background-color: var(--white-color);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.header .navbar-brand {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 7px;
}
.header .navbar-brand .logo-text {
  display: flex;
  flex-direction: column;
  gap: 0px;
  justify-content: center;
  align-items: start;
}
.header .navbar-brand .main {
  font-size: 18px;
  font-weight: 600;
  font-family: "DM sans";
  color: var(--primary-color);
}
.header .navbar-brand .sub-text {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 500;
}
.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  animation: slideDown 0.5s ease forwards;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.navbar-toggler {
  border: 0px;
  padding: 0px;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.header .logo {
  height: 76px;
  border-radius: 10px;
}
.header .navbar {
  padding: 2px 0px;
}
.header .navbar-nav {
  gap: 10px;
}
.header .nav-link {
  font-family: var(--roboto-font);
  font-weight: 400;
  color: var(--black-color);
  border-radius: 4px;
  font-size: var(--fs-md);
  padding: 2px 12px !important;
  transition: all 0.3s ease;
}
.header .nav-link:hover,
.header .nav-link.active {
  color: var(--white-color);
  background-color: var(--primary-color);
}
.header-btn {
  font-family: var(--roboto-font);
  font-weight: 600;
  color: var(--white-color);
  background-color: var(--primary-color);
  text-align: start;
  border-color: var(--primary-color);
  padding: 6px 10px;
  display: flex;
  flex-direction: column;
  margin-left: 25px;
}
.header-btn span {
  font-size: 14px;
  line-height: 20px;
}
.header-btn span.main {
  display: block;
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--secondary-color);
}
.header-btn:hover {
  background-color: var(--primary-color-dark);
  border-color: var(--primary-color-dark);
}
.header .dropdown-menu {
  border: 0px;
  box-shadow: 0px 0px 25px 7px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px;
  min-width: 225px;
}
.header .dropdown-menu li a {
  padding: 7px 10px;
}
.header .dropdown-toggle::after {
  margin-left: 10px;
}
.header .nav-item.dropdown:hover .dropdown-menu {
  display: block;
}
/* -------------------------------------------------
Scroll to Top Button
---------------------------------------------------- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  background-color: var(--primary-color-dark);
  transform: translateY(-3px);
}
.scroll-top i {
  font-size: 18px;
}
.site-welcome-modal .modal-content {
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}
.site-welcome-modal .modal-body {
  position: relative;
  padding: 42px 32px 34px;
  text-align: center;
  background:
    linear-gradient(
      180deg,
      rgba(255, 234, 0, 0.16),
      rgba(255, 255, 255, 0) 48%
    ),
    var(--white-color);
}
.site-welcome-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  box-shadow: none;
}
.site-welcome-logo {
  max-width: 150px;
  margin-bottom: 22px;
}
.site-welcome-modal h3 {
  margin-bottom: 14px;
  color: var(--primary-color);
  font-family: var(--fraunces-font);
  font-size: 32px;
  font-weight: 700;
}
.site-welcome-modal p {
  max-width: 410px;
  margin: 0 auto 26px;
  color: #4a4a4a;
  line-height: 1.7;
}
.site-welcome-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.site-welcome-actions .btn-main,
.site-welcome-actions .btn-outline-main {
  min-width: 150px;
}
.bg-light-clr {
  background-color: #fdfaf9 !important;
}
/* -------------------------------------------------
Home page
-------------------------------------------------- */
.banner-section {
  position: relative;
  /*   background-size: cover;
  background-position: center;
  background-image: url(../img/home/banner/1.jpeg);
  min-height: 80vh; */
}
.banner-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-section .container {
  position: relative;
  z-index: 2;
  padding: 140px 0px;
}
.banner-section .glow1 {
  position: absolute;
  top: -15px;
  left: 5%;
  width: 180px;
  height: 180px;
  background-image: url(../img/home/banner/glow1.png);
  background-size: cover;
  background-position: center;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-section .glow2 {
  position: absolute;
  top: -15px;
  left: 30%;
  width: 150px;
  height: 150px;
  background-image: url(../img/home/banner/glow2.png);
  background-size: cover;
  background-position: center;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-section .glow1 span,
.banner-section .glow2 span {
  font-size: 22px;
  color: var(--primary-color);
  font-family: var(--lato-font);
  font-weight: 700;
  -webkit-text-stroke: 7.5px var(--white-color);
  paint-order: stroke fill;
}
.banner-section h1 {
  font-family: var(--bebas-neue-font);
  font-size: 70px;
  color: var(--primary-color);
  -webkit-text-stroke: 10.5px var(--white-color);
  paint-order: stroke fill;
  text-shadow:
    0px 0px 0px var(--white-color),
    0px 5px 6px rgba(0, 0, 0, 0.1);
  letter-spacing: 1px;
}
/* -------------------------------------------------
Announcement
-------------------------------------------------- */
.announcement-section {
  padding: 0;
  background-color: var(--primary-color-dark);
  overflow: hidden;
}
.announcement-wrapper {
  display: flex;
  align-items: center;
  padding: 6px 0;
}
.announcement-label {
  background-color: var(--primary-color-dark);
  color: var(--secondary-color);
  font-family: var(--roboto-font);
  font-weight: 500;
  font-size: 22px;
  padding: 10px 16px;
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 2;
}
.announcement-marquee {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.marquee-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: marquee 70s linear infinite;
}
.marquee-item {
  color: var(--white-color);
  font-family: var(--roboto-font);
  font-size: 18px;
  padding: 0 5px;
  flex-shrink: 0;
}
.marquee-item .om-icon {
  color: var(--secondary-color);
}
.separator {
  color: var(--white-color);
  font-size: 28px;
  padding: 0 2px;
  flex-shrink: 0;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* -------------------------------------------------
Pathways
-------------------------------------------------- */
.pathways-section {
  /* background-image: url("../img/home/pathways/bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; */
  position: relative;
  background-color: #fdfaf9;
}
.pathways-section .bg-img-box {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.2;
}
.pathways-card {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pathways-card .content-box {
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  flex: 1;
  justify-content: space-between;
}
.pathways-card h3 {
  color: var(--primary-color);
  position: relative;
  font-size: 25px;
  margin-bottom: 30px;
  font-family: var(--fraunces-font);
}
.pathways-card h3::after {
  content: "";
  background-image: url(../img/home/pathways/title-border.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 10px;
  display: flex;
  width: 120px;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.pathways-card .img-box {
  position: relative;
  overflow: hidden;
}

.pathways-card .img-box img {
  height: 440px;
  object-fit: cover;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  border: 2px solid #ad8e00;
}
.pathways-card .img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-30deg);
  z-index: 1;
}

.pathways-card:hover .img-box::before {
  animation: shine 1.2s ease;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}
.pathways-card p {
  font-size: 16px;
  font-family: var(--jomolhari-font);
}
/* -------------------------------------------------
About Us
-------------------------------------------------- */
/* .about-section {
  background-color: #fdf7ee;
} */
.about-section .container {
  padding: 70px;
  border-radius: 26px;
  background-color: #640800;
  background-image: url("../img/home/about/bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.about-section .section-title h2 {
  color: var(--white-color);
}
.about-section h3 {
  font-family: var(--fraunces-font);
  font-size: 32px;
  color: var(--secondary-color-dark);
  margin-bottom: 20px;
}
.about-section p {
  font-size: 16px;
  color: var(--white-color);
  font-weight: 400;
}
.about-section hr {
  opacity: 1;
  border: 0px;
  margin: 40px 0px;
  border-bottom: 1px dashed var(--white-color);
}
.about-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
}
/* .about-image-wrap .img-2 {
  position: absolute;
  top: -80px;
  right: 0px;
} */
.about-image-wrap .img-1 img,
.about-image-wrap .img-2 img {
  border: 2px solid #ad8e00;
  height: 390px;
}
/* -------------------------------------------------
Temple Activities
-------------------------------------------------- */
.temple-activities {
  background-color: #f9f1e4;
}
.temple-activities h3 {
  position: relative;
  z-index: 2;
  font-size: 35px;
  color: var(--primary-color);
  font-family: var(--fraunces-font);
  margin-bottom: 20px;
}
.temple-activities p {
  font-size: 16px;
}
.temple-activities ul li {
  margin-bottom: 20px;
  position: relative;
  font-family: var(--jomolhari-font);
  padding-left: 20px;
}
.temple-activities ul li::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background-color: var(--primary-color);
  position: absolute;
  left: 2px;
  top: 8px;
}
.temple-activities ul li span {
  color: var(--primary-color);
}
.temple-activities .img-box {
  position: relative;
  overflow: hidden;
  border: 2px solid #ad8e00;
  transition: transform 0.3s ease;
}

.temple-activities .img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-30deg);
  z-index: 1;
}

.temple-activities .timeline-item:hover .img-box::before {
  animation: shine 1.2s ease;
}
.temple-activities .timeline-item .img-box img {
  transition: transform 0.3s ease;
  width: 100%;
  max-height: 315px;
  object-fit: cover;
}
.temple-activities .timeline-item:hover .img-box img {
  transform: scale(1.02);
}

.temple-activities .timeline-item {
  position: relative;
  padding: 30px 0;
}
.temple-activities .timeline-item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 12px;
  height: 12px;
  border-radius: 10px;
  background-color: var(--primary-color);
  transform: translateX(-50%);
  z-index: 3;
}
.temple-activities .timeline-item::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 0;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.temple-activities .timeline-item:first-child::before {
  top: 50px;
}
.temple-activities .timeline-item:last-child::before {
  bottom: 50%;
}
.temple-activities .content-box {
  padding: 0 30px;
}
/* -------------------------------------------------
Support Section
-------------------------------------------------- */
.support-section {
  background-color: var(--secondary-bg-dark);
  background-image: url("../img/home/support/bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding: 20px 0px;
}
.support-section .left-img {
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 1;
}
.support-section .section-title h2 {
  margin-bottom: 20px;
}
.support-section .section-title p {
  font-size: 18px;
  margin-bottom: 70px;
}
.support-section .section-title p::after {
  content: "";
  background-image: url(../img/title/brown.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 20px;
  display: flex;
  width: 150px;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.support-section h3 {
  font-size: 30px;
  font-family: var(--jomolhari-font);
  color: var(--primary-color-dark);
}
.support-section p {
  font-size: 20px;
  font-family: var(--jomolhari-font);
}
/* -------------------------------------------------
Celebrations section
-------------------------------------------------- */
.celebration-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.celebration-card .content-box {
  padding: 20px 0px 0px;
  display: flex;
  flex-direction: column;
  align-items: start;
  height: 100%;
  flex: 1;
  justify-content: space-between;
}
.celebration-card h3 {
  font-size: 20px;
  font-family: var(--fraunces-font);
  color: var(--primary-color);
  margin-bottom: 20px;
}
.celebration-card p {
  margin-bottom: 20px;
}
.upcoming-events-card {
  position: relative;
  padding: 30px;
  color: var(--white-color);
  background: var(--liner-gradient);
  border-radius: 16px;
  transition: all 0.3s ease;
}
.upcoming-events-card:hover {
  box-shadow: 0px 0px 10px 7px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.upcoming-events-card .notification-icon-box {
  position: absolute;
  top: -50px;
  right: -30px;
  background-color: var(--secondary-bg-dark);
  border: 6px solid var(--white-color);
  border-radius: 100px;
  width: 100px;
  box-shadow: 0px 1px 6.5px 3px #0000002b;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.upcoming-events-card h3 {
  font-size: 30px;
  font-family: var(--fraunces-font);
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 30px;
}
.upcoming-events-card h4 {
  font-size: 24px;
  font-family: var(--fraunces-font);
  color: var(--white-color);
  margin-bottom: 20px;
}
.upcoming-events-card hr {
  opacity: 1;
  border: 0px;
  border-bottom: 1px solid var(--white-color);
  margin: 20px 0px;
}
.upcoming-events-card p {
  margin-bottom: 5px;
}
/* -------------------------------------------------
Donation box
-------------------------------------------------- */
.gallery-section {
  background-color: #fcf6ed;
  background-image: url("../img/home/gallery/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.gallery-section p.sub-title {
  font-size: 18px;
  margin-bottom: 30px;
}
.gallery-card {
  position: relative;
}
.gallery-card .img-box {
  position: relative;
  overflow: hidden;
  border: 5px solid var(--white-color);
  box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.08);
}

.gallery-card .img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-30deg);
  z-index: 1;
}

.gallery-card:hover .img-box::before {
  animation: shine 1.2s ease;
}
.gallery-card .img-box img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  height: 290px;
}
.gallery-card:hover .img-box img {
  transform: scale(1.02);
}
.gallery-card .content-box {
  position: absolute;
  background: var(--liner-gradient);
  padding: 10px;
  bottom: 40px;
  left: 5px;
  max-width: 95%;
}
.gallery-card .content-box h3 {
  color: var(--white-color);
  font-size: var(--fs-md);
  margin: 0px;
  font-family: var(--jomolhari-font);
}
.gallery-tab {
  display: flex;
  justify-content: center;
}
.gallery-tab .nav-tabs {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid var(--primary-color);
  margin-bottom: 30px;
  padding: 0px;
  width: 100%;
  gap: 10px;
}
.gallery-tab .nav-tabs .nav-item {
  width: 19%;
}
.gallery-tab .nav-tabs .nav-link {
  color: var(--black-color);
  font-family: var(--jomolhari-font);
  padding: 20px 30px;
  border-radius: 0px;
  border-color: transparent;
  background-color: #92180d14;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  width: 100%;
}
.gallery-tab .nav-tabs .nav-link.active {
  color: var(--white-color);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.temple-complex-box .content-box .service-title {
  margin-bottom: 10px;
}
/* -------------------------------------------------
Donation box
-------------------------------------------------- */
.donation-box {
  padding: 20px;
  background-color: var(--secondary-bg-dark);
}
.donation-box .inner-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.donation-box h4 {
  font-family: var(--jomolhari-font);
  font-size: 32px;
  margin: 0px;
}
/* -------------------------------------------------
Footer
-------------------------------------------------- */
.footer {
  color: var(--white-color);
  background: var(--liner-gradient-footer);
  padding: 60px 0px 40px;
  text-align: start;
}
.footer-logo-box {
  margin-bottom: 30px;
}
.footer-logo-box img {
  height: 140px;
  margin-bottom: 30px;
  border-radius: 10px;
}
.footer-logo-box p {
  color: var(--white-color);
  font-family: var(--open-sans-font);
  font-weight: 400;
}
.footer .social-list {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer .social-list li {
  transition: all 0.3s ease;
}
.footer .social-list li:hover {
  transform: translateY(-3px);
}
.footer .social-list img {
  width: auto;
  height: 20px;
}
.footer h4 {
  color: var(--secondary-color);
  margin-bottom: 30px;
  font-family: var(--dm-sans-font);
  font-weight: 700;
}
.footer .footer-list li {
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.footer .footer-list li:hover,
.footer .footer-list li a:hover {
  color: var(--secondary-color);
}
.footer .footer-list.contact li img {
  width: auto;
  height: 22px;
  margin-right: 10px;
}
.footer .footer-list li,
.footer .footer-list a {
  display: flex;
  font-family: var(--dm-sans-font);
  font-weight: 400;
  color: var(--white-color);
  font-size: 16px;
  transition: all 0.3s ease;
}
.footer .footer-list li span {
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid #d9dbe9;
  padding-top: 20px;
  margin-top: 20px;
}
.footer-bottom p {
  color: var(--white-color2);
}
.footer-bottom p,
.footer-bottom a,
.footer-bottom li {
  font-size: 16px;
  font-family: var(--dm-sans-font);
  margin-bottom: 0px;
  transition: all 0.3s ease;
  color: var(--white-color);
}
.footer-bottom a:hover {
  color: var(--secondary-color);
}
.footer-bottom ul {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom ul li {
  position: relative;
}
.footer-bottom ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  height: 18px;
  transform: translateY(-50%);
  border: 1px solid var(--white-color);
  display: block;
}
.footer-bottom ul li:last-child::after {
  display: none;
}
.footer-bottom ul li a {
  color: var(--white-color);
  text-decoration: underline;
}

/* -------------------------------------------------
Services Hero Section with Breadcrumb
-------------------------------------------------- */

.services-hero-section {
  position: relative;
  background: var(--liner-gradient);
  min-height: 30vh;
  display: flex;
  align-items: center;
  color: var(--white-color);
  overflow: hidden;
  padding: 40px 0px;
}

.services-hero-section .container {
  position: relative;
  z-index: 2;
}
.services-hero-section .hero-content {
  margin-bottom: 20px;
}
.services-breadcrumb {
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
}

.services-breadcrumb .breadcrumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 10px 20px;
  display: inline-flex;
  backdrop-filter: blur(10px);
  margin: 0px;
}

.services-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: var(--secondary-color);
  font-weight: bold;
}

.services-breadcrumb .breadcrumb-item a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.services-breadcrumb .breadcrumb-item a:hover {
  color: var(--white-color);
}

.services-breadcrumb .breadcrumb-item.active {
  color: var(--white-color);
}

.hero-title {
  font-family: var(--fraunces-font);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: var(--white-color);
}

.hero-subtitle {
  font-family: var(--jomolhari-font);
  font-size: 20px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

/* -------------------------------------------------
Main Services Grid Section
-------------------------------------------------- */

.main-services-section {
  background-color: #fdf7ee;
}

.service-card {
  background: var(--white-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(146, 24, 13, 0.15);
}

.service-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-family: var(--fraunces-font);
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 12px;
  font-weight: 600;
}

.service-content p {
  font-family: var(--roboto-font);
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 20px;
  flex: 1;
}

.btn-service {
  background: var(--primary-color);
  color: var(--white-color);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-family: var(--roboto-font);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.btn-service:hover {
  background: var(--primary-color-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(146, 24, 13, 0.2);
}

/* -------------------------------------------------
Service Accordion Styles
-------------------------------------------------- */

.service-accordion {
  border-radius: 0px;
  overflow: hidden;
  box-shadow: none;
}

.service-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(146, 24, 13, 0.1);
  margin-bottom: 10px;
}

.service-accordion .accordion-item:last-child {
  /* border-bottom: none; */
  margin-bottom: 0px;
}
.accordion-item:first-of-type > .accordion-header .accordion-button {
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
}
.accordion-item:first-of-type {
  border-radius: 0px !important;
}
.service-accordion .accordion-button {
  background: linear-gradient(135deg, #fff8f0 0%, var(--white-color) 100%);
  color: var(--primary-color);
  font-family: var(--inter-font);
  font-size: 18px;
  font-weight: 500;
  padding: 20px 25px;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
  position: relative;
}

.service-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-color-dark)
  );
  color: var(--white-color);
  box-shadow: none;
}

.service-accordion .accordion-button:focus {
  box-shadow: none;
  border: none;
  outline: none;
}

.service-accordion .accordion-button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--secondary-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-accordion .accordion-button:not(.collapsed)::before {
  opacity: 1;
}

.service-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23921180d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.3s ease;
}

.service-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.service-accordion .accordion-body {
  background: var(--white-color);
  color: var(--black-color);
  font-family: var(--roboto-font);
  font-size: 16px;
  line-height: 1.6;
  padding: 20px 25px;
  border-top: 1px solid rgba(146, 24, 13, 0.05);
}

.service-accordion .accordion-button:hover:not(.collapsed) {
  background: linear-gradient(
    135deg,
    var(--primary-color-dark),
    var(--primary-color)
  );
}

.service-accordion .accordion-button:hover {
  background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
}

/* -------------------------------------------------
Service Detail Page Styles
-------------------------------------------------- */

.service-details-section {
  background-color: #fdf7ee;
}

.service-detail-content {
  background: var(--white-color);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.content-block {
  margin-bottom: 40px;
}

.content-block h2 {
  font-family: var(--fraunces-font);
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.content-block p {
  font-family: var(--roboto-font);
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(146, 24, 13, 0.1);
  font-family: var(--roboto-font);
  font-size: 16px;
  color: #555;
  display: flex;
  align-items: flex-start;
}

.benefits-list li strong {
  color: var(--primary-color);
  margin-right: 8px;
  min-width: 140px;
}

.benefits-list li:last-child {
  border-bottom: none;
}

/* Contribution Methods */
.contribution-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.method-card {
  background: linear-gradient(135deg, #fff8f0 0%, var(--white-color) 100%);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.method-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(146, 24, 13, 0.15);
}

.method-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white-color);
  font-size: 24px;
}

.method-card h4 {
  font-family: var(--inter-font);
  font-weight: 500;
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.method-card p {
  font-family: var(--roboto-font);
  font-size: 16px;
  color: var(--black-color);
}
.service-detail-content .img-block {
  margin-bottom: 30px;
}
.service-detail-content .img-block img {
  width: 100%;
  border: 2px solid #ad8e00;
}
/* -----------------------------------------------------
About Us
------------------------------------------------------ */
.about-main-section {
  padding: 20px 0 20px;
}

.about-main-section .section-title h2 {
  text-align: start;
}
.about-main-section .section-title h2.yellow::after {
  left: 0;
  transform: none;
}
.services-content p {
  font-size: 18px;
  font-family: var(--jomolhari-font);
}

.service-subtitle {
  color: var(--primary-color);
  position: relative;
  font-size: 23px;
  font-family: var(--fraunces-font);
}

.service-title {
  font-family: var(--fraunces-font);
  font-size: 26px;
  color: #e35608;
  margin-bottom: 20px;
}
.about-main-img-box {
  position: relative;
  overflow: hidden;
  display: block;
}
.about-main-img-box::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 1;
  pointer-events: none;
}
.about-main-img-box:hover::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.about-main-img {
  max-height: 700px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #ad8e00;
}
.about-main-img1 {
  width: auto;
  height: 300px;
  margin-left: 30px;
}

.about-main-img2 {
  width: 300px;
  height: 300px;
  margin-top: 30px;
  margin-left: 30px;
}
.img-column {
  align-items: end;
}
.about-main-img7 {
  width: 300px;
  height: 400px;
}

.about-main-img8 {
  width: 300px;
  height: 250px;
  margin: 30px 0;
}

.sigma_icon-block {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.icon-wrapper {
  flex-shrink: 0;
}

.samaj-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.about-hero-section {
  background-color: var(--white-color);
  position: relative;
  padding: 30px 0 210px;
}

.about-decor-bottom {
  position: absolute;
  z-index: 1;
}

.about-decor-top {
  width: auto;
  height: 200px;
  top: 20px;
}

.about-decor-bottom {
  width: auto;
  height: 239px;
  transform: rotate(360deg);
  bottom: 30px;
  left: 722px;
}

.about-hero-section .upcoming-events-card {
  position: relative;
  padding: 30px;
  color: var(--white-color);
  background: var(--liner-gradient);
  border-radius: 16px;
  transition: all 0.3s ease;
  z-index: 5;
  height: 100%;
}

.about-hero-section .upcoming-events-card h3::after {
  content: "";
  background-image: url(../img/title/yellow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 20px;
  display: flex;
  width: 150px;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.about-hero-section .upcoming-events-card .para {
  margin-top: 55px;
}
.core-values-section {
  background-color: #fdf7ee;
  padding-bottom: 120px;
}

.core-values-section .section-title h2::after {
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
}

.core-values-section .row.g-5 {
  row-gap: 50px;
}

.core-value-card {
  text-align: center;
  padding: 50px 20px 30px;
  background: var(--white-color);
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  font-size: 28px;
  border: 1px solid rgba(146, 24, 13, 0.05);
  position: relative;
}

.core-value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 15px 35px rgba(146, 24, 13, 0.12);
  border-color: rgba(146, 24, 13, 0.2);
}

.core-value-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--liner-gradient);
  transition: all 0.4s ease;
}

.core-value-card:hover::before {
  opacity: 1;
}
.core-value-card .icon-box {
  width: 80px;
  height: 80px;
  margin: -90px auto 20px;
  background: var(--liner-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 35px;
  transition: all 0.4s ease;
  border: 6px solid var(--white-color);
  box-shadow: 0px 5px 15px rgba(146, 24, 13, 0.2);
}
.core-value-card:hover .icon-box {
  transform: rotateY(180deg) scale(1.05);
  box-shadow: 0px 8px 25px rgba(146, 24, 13, 0.3);
}
.core-value-card h3 {
  font-family: var(--fraunces-font);
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 0;
}

.core-value-card h3 span {
  font-size: 16px;
  font-family: var(--jomolhari-font);
  color: var(--black-color);
  font-weight: normal;
}
.core-value-card p {
  font-size: 16px;
  font-family: var(--jomolhari-font);
  color: var(--black-color);
  margin-top: 15px;
  line-height: 1.6;
}
/* ------------------------------------------------
Events
------------------------------------------------ */
.events-filter {
  background: var(--white-color);
  padding: 0 0 40px;
}
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 12px 35px;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: var(--secondary-color);
}
.celebration-card .img-box {
  position: relative;
  overflow: hidden;
  display: block;
  border: 2px solid #ad8e00;
}
.celebration-card .img-box::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 1;
  pointer-events: none;
}
.celebration-card .img-box:hover::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.celebration-card .img-box img {
  height: 315px;
  width: 100%;
  object-fit: cover;
  transition: all 0.7s ease;
}
.celebration-card .img-box:hover img {
  transform: scale(1.05);
}
.event-date-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #e75a08 100%);
  color: var(--secondary-color);
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
  min-width: 50px;
  z-index: 2;
}
.event-date-badge .day {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  line-height: 1;
  display: block;
}
.event-date-badge .month {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.event-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
}

.event-tag.upcoming {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.event-tag.past {
  background: #6c757d;
  color: var(--white-color);
}

.event-card.hidden {
  display: none !important;
}
.events-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.events-pagination a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 50%;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.events-pagination a:hover,
.events-pagination a.active {
  background: var(--primary-color);
  color: var(--secondary-color);
}
/* -----------------------------------------------
Event details
------------------------------------------------ */
.event-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.event-description h2 {
  font-family: var(--fraunces-font);
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}
.event-description .img-box {
  margin-bottom: 30px;
}
.event-description .img-box img {
  width: 100%;
  border: 2px solid #ad8e00;
}
.event-description h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
}

.event-description p {
  color: var(--black-color);
  margin-bottom: 20px;
  font-size: 16px;
  font-family: var(--inter-font);
}

.event-description ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.event-description ul li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: #555;
  border-bottom: 1px dashed #eee;
}

.event-description ul li:last-child {
  border-bottom: none;
}

.event-description ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.event-schedule {
  background: linear-gradient(135deg, #fff8f0 0%, var(--white-color) 100%);
  padding: 5px 18px;
  border-radius: 6px;
  margin-bottom: 40px;
  border-left: 4px solid var(--primary-color);
}

.event-schedule-title {
  font-family: var(--fraunces-font);
  color: var(--primary-color);
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 600;
}

.schedule-item {
  display: flex;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.schedule-item:last-child {
  border-bottom: none;
}

.schedule-time {
  min-width: 100px;
  font-weight: 600;
  color: var(--primary-color);
}

.schedule-content h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
}

.schedule-content p {
  font-size: 14px;
  color: #777;
  margin: 0;
}
.event-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
  height: fit-content;
}

.sidebar-box {
  background: var(--white-color);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 5px 25px rgba(146, 24, 13, 0.1);
}

.sidebar-box h3 {
  font-family: var(--fraunces-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--secondary-color);
}

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, var(--primary-color) 0%, #e75a08 100%);
  color: var(--white-color);
  text-align: center;
}

.cta-box h3 {
  color: var(--secondary-color);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.cta-box p {
  margin-bottom: 20px;
  font-size: 16px;
}

.btn-register {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-register:hover {
  background: var(--white-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #e75a08 100%);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 14px;
  color: #888;
  margin-bottom: 5px;
}

.contact-item p {
  font-size: 16px;
  color: #333;
  margin: 0;
  font-weight: 500;
}
.event-gallery {
  margin-top: 40px;
}

.event-gallery h2 {
  font-family: var(--fraunces-font);
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 25px;
}
.schedule-icon {
  margin-right: 5px;
}

.register-icon {
  margin-right: 8px;
}

.guidelines-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guidelines-list li {
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
  text-indent: -28px;
  margin-left: 40px;
}

.guidelines-list li:last-child {
  border-bottom: none;
}

.check-icon {
  color: var(--primary-color);
  margin-right: 10px;
}
/* ---------------------------------------------
History
---------------------------------------------- */
.history-img-box img {
  width: 100%;
  border-radius: 10px;
  max-height: 700px;
  object-fit: cover;
  border: 2px solid #ad8e00;
}
.history-title {
  font-family: var(--dm-sans-font);
  font-size: 16px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}
.history-section p {
  font-family: var(--dm-sans-font);
  color: var(--black-color);
}
.history-bold {
  font-weight: 700;
}
.history-divider {
  border: 0px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.23);
  margin: 30px 0px;
  opacity: 1;
}

.history-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.history-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-family: var(--dm-sans-font);
  font-size: var(--fs-md);
  color: var(--black-color);
  line-height: 1.6;
}

.history-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  top: -3px;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: bold;
}
/* ----------------------------------------------
Donations
----------------------------------------------- */
.donation-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #640800 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.donation-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/home/banner-bg.png") center/cover;
  opacity: 0.1;
}

.donation-hero .container {
  position: relative;
  z-index: 1;
}

.donation-hero h1 {
  font-family: var(--fraunces-font);
  font-size: 48px;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 15px;
}

.donation-hero p {
  text-align: center;
  color: #fff;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* Usage Section */
.usage-section {
  background: #faf8f5;
}

.usage-card {
  position: relative;
  /* min-height: 350px; */
  padding: 20px 20px 65px;
  text-align: center;
  height: 100%;
  z-index: 1;
  transition: all 0.5s;
  border-top: 1px solid var(--primary-color);
}

.usage-card::before {
  position: absolute;
  /* min-height: 350px; */
  padding: 20px 20px 65px;
  text-align: center;
  background: #fff;
  clip-path: polygon(100% 0, 100% 80%, 50% 100%, 0 81%, 0 0);
  height: 100%;
  left: 0;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  border-top: 1px solid var(--primary-color);
  z-index: -1;
}

.usage-card:hover {
  transform: translateY(-5px);
}

.usage-icon {
  width: 80px;
  height: 80px;
  background: #fef6ed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 27px;
  margin-left: auto;
  margin-right: auto;
  transition: 0.3s;
}

.usage-card .usage-icon i {
  font-size: 35px;
  color: var(--primary-color);
}
.usage-card .usage-icon img {
  width: 60px;
  height: 60px;
}

.usage-card:hover .usage-icon {
  background: var(--secondary-color);
}

.usage-card h4 {
  font-family: var(--fraunces-font);
  font-size: 16px;
  color: var(--primary-color);
  margin-bottom: 0px;
  font-weight: 600;
  transition: 0.3s;
}

.usage-card p {
  color: #000000;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

.usage-card .step-number {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 35px;
  background: var(--liner-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

/* Why Donate Section */
.why-donate-section {
  background-color: var(--secondary-bg-dark);
  position: relative;
  overflow: hidden;
  /* background-image: url("../img/home/support/bg.png"); */
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 70% 50%;
}

.why-donate-section .section-title h2::after {
  background-image: url(../img/title/brown.png);
}

.why-donate-card {
  backdrop-filter: blur(5px);
  transition: all 0.6s;
  padding: 24px 20px;
  border-radius: 12px;
  /* border: 1px dashed var(--primary-color); */
  background: #ffffff;
  height: 100%;
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.024);
  border-left: 0px dashed var(--primary-color);
}

.why-donate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(146, 24, 13, 0.1);
}

.why-donate-card .icon-wrapper .dot {
  width: 20px;
  height: 20px;
  background: #92180dab;
  border-radius: 50%;
  position: relative;
}

.why-donate-card .icon-wrapper::before {
  content: "";
  width: 70%;
  height: 1px;
  background: #92180dab;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.why-donate-card .icon-wrapper .dot::before {
  content: "";
  position: absolute;
  background: #fff;
  width: 10px;
  height: 10px;
  inset: 0;
  margin: auto;
  border-radius: 50%;
}

.why-donate-card .icon-wrapper .count {
  font-size: 45px;
  font-weight: 700;
  color: var(--secondary-color-dark);
  transition: all 0.6s;
}

.why-donate-card:hover .icon-wrapper .count {
  color: var(--secondary-bg-dark);
}

.why-donate-card .icon-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.why-donate-card i {
  font-size: 28px;
  color: var(--secondary-color);
}

.why-donate-card h4 {
  font-family: var(--fraunces-font);
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
  text-align: start;
}

.why-donate-card p {
  color: #000;
  margin: 0;
}

.donation-types-section {
  padding: 60px 0;
  background: #fff;
}

.donation-type-card {
  background: #fff;
  border: 2px solid #f0e6e0;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.donation-type-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(146, 24, 13, 0.1);
}

.donation-type-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #e75a08 100%);
  padding: 20px;
  text-align: center;
}

.donation-type-header i {
  font-size: 36px;
  color: var(--secondary-color);
  margin-bottom: 10px;
  display: block;
}

.donation-type-header h4 {
  font-family: var(--fraunces-font);
  font-size: 20px;
  color: #fff;
  margin: 0;
}

.donation-type-body {
  padding: 25px;
}

.donation-type-body p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.donation-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.donation-benefits li {
  padding: 8px 0;
  font-size: 14px;
  color: #555;
  border-bottom: 1px dashed #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}

.donation-benefits li:last-child {
  border-bottom: none;
}

.donation-benefits li i {
  color: var(--primary-color);
}

.btn-donate {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-color);
  color: var(--white-color);
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-donate:hover {
  background: #640800;
  color: var(--secondary-color);
}

/* Donation Form Section */
.donation-form-section {
  background: #f9f1e4;
}
.donation-form-section .donation-form-wrapper {
  box-shadow: none;
}
.donation-form-wrapper .contact-form-right {
  background: var(--white-color);
  border: none;
}

.donation-form-wrapper {
  background: var(--white-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0px 0px 50px 2px rgba(0, 0, 0, 0.1);
}

.donation-form-wrapper h3 {
  font-family: var(--fraunces-font);
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.amount-btn {
  padding: 15px 18px;
  border: 1px solid #e0e0e0;
  background: var(--white-color);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.amount-btn:hover,
.amount-btn.active {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: var(--white-color);
}

.custom-amount {
  grid-column: span 2;
}

.custom-amount input {
  width: 100%;
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  text-align: center;
}

.custom-amount input:focus {
  border-color: var(--primary-color);
  outline: none;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.form-group label .required {
  color: var(--primary-color);
}
.required-text {
  color: #e71c09;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

select.form-control {
  appearance: none;
  background: var(--white-color)
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%2392180d" d="M6 8L1 3h10z"/></svg>')
    no-repeat right 15px center;
}

.payment-methods {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 2px solid #ddd;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-method:hover,
.payment-method.active {
  border-color: var(--primary-color);
  background: #fff8f0;
}

.payment-method input {
  display: none;
}

.payment-method i {
  color: var(--primary-color);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #e75a08 100%);
  color: var(--white-color);
  padding: 16px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(146, 24, 13, 0.3);
}

/* Bank Details Sidebar */
.bank-details-card {
  background: linear-gradient(135deg, #640800 0%, var(--primary-color) 100%);
  border-radius: 20px;
  padding: 30px;
  color: var(--white-color);
  margin-bottom: 25px;
}

.bank-details-card .section-title .yellow {
  color: var(--secondary-color);
}

.bank-details-card h4 {
  font-family: var(--fraunces-font);
  font-size: 22px;
  color: var(--secondary-color);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bank-detail-item {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.bank-detail-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.bank-detail-item label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  display: block;
}

.bank-detail-item p {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* Contact Card */
.donation-contact-card {
  background: var(--white-color);
  border: 2px solid #f0e6e0;
  border-radius: 20px;
  padding: 25px;
}
.donation-contact-card .contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.donation-contact-card .section-title {
  margin-bottom: 14px;
}
.donation-contact-card .section-title h2 {
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  padding-bottom: 12px;
}
.donation-contact-card .contact-item {
  padding: 10px 0;
  margin-bottom: 18px;
}
.donation-contact-card h4 {
  font-family: var(--fraunces-font);
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.donation-contact-card p {
  color: var(--black-color);
  font-size: 16px;
  margin-bottom: 15px;
}

.contact-item {
  display: flex;
  align-items: start;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px dashed #eee;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item i {
  width: 35px;
  height: 35px;
  background: #fff8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 14px;
}

.contact-item a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
  background: var(--white-color);
}

/* Testimonials - Owl Carousel */
.testimonials-section {
  background-color: #fcf6ed;
  background-image: url(../img/home/gallery/bg.png);
}

.testimonial-carousel-wrapper {
  position: relative;
  padding: 20px 0;
}

.owl-testimonial .owl-stage-outer {
  padding: 35px 10px 20px;
}

.owl-testimonial .owl-stage {
  display: flex;
}

.owl-testimonial .owl-item {
  display: flex;
  height: auto;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 25px 25px;
  position: relative;
  margin: 0 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card p {
  flex-grow: 1;
}

.testimonial-card .quote-badge {
  position: absolute;
  top: -35px;
  left: 35px;
  width: 66px;
  border: 10px solid #fff;
  height: 66px;
  background: var(--primary-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  transform: skewX(347deg);
}

.testimonial-card .quote-badge i {
  transform: skewX(5deg);
}

.testimonial-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
  margin-top: 20px;
  padding-left: 15px;
  border-left: 3px solid var(--primary-color);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  background: #ddd;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h6 {
  font-size: 18px;
  color: var(--primary-color);
  margin: 0;
  font-weight: 700;
}

.author-info span {
  font-size: 13px;
  color: #666;
}

.owl-testimonial .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-testimonial .owl-dot {
  width: 10px;
  height: 10px;
  background: var(--secondary-bg-dark) !important;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.owl-testimonial .owl-dot.active {
  background: var(--primary-color) !important;
  width: 25px;
  border-radius: 5px;
}

.owl-testimonial .owl-nav {
  display: none;
}

.stats-section {
  background: #f8f9fa;
  padding: 60px 0;
}

.stat-card {
  background: url("../img/bg/stat-bg.png");
  border-radius: 16px;
  padding: 90px 20px 30px;
  text-align: center;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 250px;
  margin-top: 50px;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card .stat-icon::before {
  position: absolute;
  left: 50%;
  top: 46px;
  transform: translate(-50%, -50%);
  content: "";
  height: 115px;
  width: 115px;
  box-shadow: inset 0px 4px 26px rgba(23, 37, 57, 0.16);
  border-radius: 50%;
  z-index: -1;
}

.stat-icon {
  height: 88px;
  width: 88px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 15px rgba(146, 24, 13, 0.3);
}

.stat-icon img {
  height: 50px;
  width: 50px;
  filter: brightness(0) invert(1);
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-family: var(--fraunces-font);
}

.stat-label {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
.testimonial-carousel {
  margin: 0 auto;
}

.testimonial-carousel .carousel-item {
  padding: 20px;
}

.testimonial-carousel .carousel-indicators {
  bottom: -50px;
}

.testimonial-carousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  border: none;
  margin: 0 6px;
}

.testimonial-carousel .carousel-indicators button.active {
  background-color: var(--primary-color);
}

.testimonial-carousel .carousel-control-prev,
.testimonial-carousel .carousel-control-next {
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.testimonial-carousel .carousel-control-prev {
  left: -60px;
}

.testimonial-carousel .carousel-control-next {
  right: -60px;
}

.testimonial-carousel .carousel-control-prev:hover,
.testimonial-carousel .carousel-control-next:hover {
  background: #640800;
}

/* Donation Amount Section */
.donation-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 15px;
}

.amount-btn:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(146, 24, 13, 0.15);
}

.amount-btn.active {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: var(--white-color);
  box-shadow: 0 8px 20px rgba(146, 24, 13, 0.25);
}

.custom-amount-wrapper {
  position: relative;
  margin-top: 10px;
}

.custom-amount-wrapper .form-control {
  padding-left: 45px;
}

.currency-symbol {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 600;
  color: var(--primary-color);
  font-size: 18px;
  pointer-events: none;
}

.donation-form-section .section-title h2.yellow::after {
  left: 0;
  transform: unset;
}
.purpose-options label {
  display: block;
  margin-bottom: 8px;
  cursor: pointer;
}
/* ------------------------------------------
Publications
-------------------------------------------- */
.publications-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #b91d0d 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.publications-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("assets/img/home/gallery/bg.png") center/cover;
  opacity: 0.1;
}

.publications-hero .hero-title {
  color: var(--white-color);
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.publications-hero .breadcrumb {
  background: transparent;
  justify-content: center;
  position: relative;
  margin-bottom: 0;
}

.publications-hero .breadcrumb-item a {
  color: var(--secondary-color);
  text-decoration: none;
}

.publications-hero .breadcrumb-item.active {
  color: var(--white-color);
}

.publications-hero .breadcrumb-item + .breadcrumb-item::before {
  color: var(--secondary-color);
}

.featured-section {
  background: #fcf6ed;
}
.featured-book {
  background: var(--white-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(146, 24, 13, 0.1);
  display: flex;
  align-items: center;
}

.featured-image {
  flex: 0 0 25%;
  position: relative;
  padding: 40px;
  background: linear-gradient(135deg, #f8f4f0 0%, #fff 100%);
}

.featured-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.featured-image:hover img {
  transform: perspective(1000px) rotateY(0deg);
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  z-index: 2;
}

.featured-content {
  flex: 1;
  padding: 50px;
}

.featured-content .category-tag {
  display: inline-block;
  background: rgba(146, 24, 13, 0.1);
  color: var(--primary-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.featured-content h2 {
  font-size: 36px;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-family: var(--fraunces-font);
}

.featured-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 16px;
}

.featured-meta {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.featured-meta span {
  color: #666;
  font-size: 14px;
}

.featured-meta span i {
  color: var(--primary-color);
  margin-right: 8px;
}

.btn-primary-custom {
  background: var(--primary-color);
  color: var(--white-color);
  padding: 14px 25px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.btn-primary-custom:hover {
  background: transparent;
  color: var(--primary-color);
}

.btn-outline-custom {
  background: transparent;
  color: var(--primary-color);
  padding: 14px 25px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  margin-left: 15px;
}

.btn-outline-custom:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/* Category Tabs */
.category-tabs {
  padding-bottom: 0;
}

.category-tabs .nav-tabs {
  border: none;
  justify-content: center;
  gap: 15px;
}

.category-tabs .nav-tabs .nav-link {
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  padding: 12px 30px;
  color: #666;
  font-weight: 600;
  transition: all 0.3s ease;
  background: var(--white-color);
}

.category-tabs .nav-tabs .nav-link:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.category-tabs .nav-tabs .nav-link.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
}

/* Publications Grid */
.publications-grid-section {
  padding: 60px 0;
  background: var(--white-color);
}

.publication-card {
  background: var(--white-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.publication-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(146, 24, 13, 0.12);
}

.publication-cover {
  position: relative;
  padding: 20px;
  /* background: linear-gradient(135deg, #f8f4f0 0%, #fff 100%); */
  text-align: center;
}

.publication-cover img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 300px;
  object-fit: cover;
}

/* .publication-card:hover .publication-cover img {
        transform: scale(1.03);
    } */

.publication-type {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.publication-info {
  padding: 20px 25px 20px;
  flex-grow: 1;
  display: flex;
  border-top: 1px dashed var(--secondary-color-dark);
  flex-direction: column;
}

.publication-info h4 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.4;
}

.publication-info p {
  color: #777;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.publication-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.publication-date {
  font-size: 13px;
  color: #999;
}

.download-btn {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.download-btn:hover {
  color: #b91d0d;
  gap: 10px;
}

/* Newsletter Section */
.newsletter-section {
  background: var(--liner-gradient);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-content {
  text-align: center;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-content h2 {
  color: #fff;
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-size: 16px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 280px;
  padding: 18px 25px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}

.newsletter-form button {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  padding: 18px 40px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--white-color);
  transform: translateY(-2px);
}

/* Archive Section */
.archive-section {
  background: #fcf6ed;
  padding: 80px 0;
}

.archive-list {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.archive-item {
  display: flex;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.archive-item:last-child {
  border-bottom: none;
}

.archive-item:hover {
  background: #fafafa;
}

.archive-icon {
  width: 50px;
  height: 50px;
  background: rgba(146, 24, 13, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.archive-icon i {
  color: var(--primary-color);
  font-size: 20px;
}

.archive-info {
  flex: 1;
}

.archive-info h5 {
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.archive-info span {
  font-size: 14px;
  color: #999;
}

.archive-action {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.archive-action:hover {
  gap: 15px;
}

/* How to Order Section */
.order-section {
  background: #fcf6ed;
}

.order-card {
  background: var(--white-color);
  border: 2px solid #f0f0f0;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.order-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.order-icon {
  width: 80px;
  height: 80px;
  background: rgba(146, 24, 13, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.order-icon i {
  font-size: 32px;
  color: var(--primary-color);
}

.order-card h4 {
  font-size: 22px;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.order-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.order-card .contact-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}
/* -----------------------------------------------
Contact
------------------------------------------------- */
.contact-hero {
  background: linear-gradient(135deg, #92180d 0%, #e75a08 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("assets/img/home/banner-bg.png") center/cover;
  opacity: 0.1;
}

.contact-hero .container {
  position: relative;
  z-index: 1;
}

.contact-hero h1 {
  font-family: var(--fraunces-font);
  font-size: 48px;
  color: #ffea00;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-split-section {
  padding: 80px 0;
  background: #fff;
}

/* .contact-split-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 60px;
        align-items: start;
    } */

.contact-info-card {
  background: #640800;
  border-radius: 15px;
  padding: 40px;
  color: #fff;
  height: fit-content;
}

.contact-info-card .section-title,
.contact-info-card .section-title h2,
.contact-form-right .section-title,
.contact-form-right .section-title h2 {
  text-align: left;
}

.contact-info-card .section-title h2.yellow::after,
.contact-form-right .section-title h2.yellow::after {
  left: 0;
  transform: none;
}

.contact-card-desc {
  color: #fff;
  font-size: 18px;
  margin-bottom: 30px;
}

.contact-card-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.contact-card-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card-item:first-child {
  padding-top: 0;
}

.contact-card-item:last-child {
  border-bottom: none;
}

.contact-card-item .icon-circle {
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-item .icon-circle i {
  color: #fff;
  font-size: 20px;
}

.contact-card-item .item-content h4 {
  color: var(--secondary-color);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-card-item .item-content p {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.contact-card-item .item-content a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-card-item .item-content a:hover {
  color: #ffea00;
}

.contact-social-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.contact-social-label {
  color: var(--secondary-color);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.contact-social {
  display: flex;
  gap: 12px;
}

.contact-social a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-social a:hover {
  background: #92180d;
  color: #ffea00;
  transform: translateY(-3px);
}

.contact-form-right {
  background: #fafafa;
  border-radius: 20px;
  padding: 28px 40px;
  border: 2px solid #f0e6e0;
}

.contact-form-right .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 10px;
}

.contact-form-right .form-group {
  margin-bottom: 20px;
}

.contact-form-right label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.contact-form-right label .required {
  color: red;
  margin-left: 3px;
}

.contact-form-right .form-control {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
  transition: all 0.3s ease;
}
.contact-form-right .price-field {
  padding-left: 40px;
}

.contact-form-right .form-control:focus {
  border-color: #92180d;
  outline: none;
  box-shadow: none;
}

.contact-form-right textarea.form-control {
  min-height: 85px;
  resize: vertical;
}

.contact-form-right select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2392180d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.map-hours-section {
  padding: 0 0 80px;
  background: #fff;
}

.map-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/* -------------------------------------------------
Live Darshan Page
-------------------------------------------------- */
.hero-subtitle {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-top: 1rem;
  font-weight: 300;
  font-family: var(--jomolhari-font);
}

.live-darshan-section {
  background-color: #fcf6ed;
}

/* Live Video Container */
.live-video-container {
  position: relative;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  margin-bottom: 2rem;
}

.live-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #e74c3c;
  color: var(--white-color);
  padding: 8px 16px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.live-dot {
  width: 10px;
  height: 10px;
  background: var(--white-color);
  border-radius: 50%;
  animation: live-pulse 1.5s infinite;
}

@keyframes live-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.live-video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
}

.video-overlay-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 30px 20px 20px;
  color: var(--white-color);
}

.stream-status h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  font-family: var(--fraunces-font);
}

.stream-time {
  margin: 5px 0 0 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Stream Info Card */
.stream-info-card {
  background: var(--white-color);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 2rem;
}

.info-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 12px;
}

.info-header h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--primary-color);
  font-family: var(--inter-font);
}

.stream-info-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: var(--jomolhari-font);
}

.stream-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
  gap: 8px;
}

.highlight-item i {
  font-size: 1.5rem;
  color: var(--secondary-color-dark);
}

.highlight-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  font-family: var(--roboto-font);
}

/* Status Card */
.darshan-status-card,
.timing-card,
.guidelines-card {
  background: var(--white-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
}

.status-header,
.timing-header,
.guidelines-header {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.status-header h3,
.timing-header h3,
.guidelines-header h3 {
  margin: 0;
  font-size: 1rem;
  color: #333;
  font-family: var(--inter-font);
}

.yellow-bg {
  background: var(--liner-gradient-footer);
  color: #fff !important;
}

.yellow-bg h3 {
  color: #fff !important;
}

.yellow-bg i {
  color: #fff !important;
}

.status-content,
.timing-content,
.guidelines-content {
  padding: 20px;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
}

.status-dot.active {
  background: #27ae60;
  box-shadow: 0 0 10px rgba(39, 174, 96, 0.5);
  animation: live-pulse 1.5s infinite;
}

.status-text {
  font-weight: 600;
  color: #27ae60;
}

.text-muted {
  color: #999;
  font-size: 0.9rem;
}

/* Timing Card */
.timing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.timing-item:last-child {
  border-bottom: none;
}

.timing-item label {
  font-weight: 500;
  color: #333;
  margin: 0;
  font-family: var(--roboto-font);
}

.timing {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--roboto-font);
}

/* Guidelines Card */
.guidelines-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guidelines-content li {
  padding: 10px 0;
  color: #000;
  border-bottom: 1px solid #f0f0f0;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  padding-left: 20px;
  font-family: var(--roboto-font);
}

.guidelines-content li:last-child {
  border-bottom: none;
}

.guidelines-content li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color-dark);
  font-weight: bold;
}

/* Support Card - Live Darshan */
.support-card {
  background: var(--white-color);
  border: 2px dashed #ccc;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.support-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.support-icon {
  width: 70px;
  height: 70px;
  background: var(--liner-gradient-footer);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 5px 15px rgba(255, 234, 0, 0.3);
}

.support-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--primary-color);
  font-family: var(--fraunces-font);
  font-weight: 600;
}

.support-card p {
  color: #666;
  margin-bottom: 20px;
  font-family: var(--roboto-font);
  font-size: 0.95rem;
}

.support-link {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color) 0%, #e75a08 100%);
  color: var(--white-color);
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--roboto-font);
  transition: all 0.3s ease;
}

.support-link:hover {
  box-shadow: 0 8px 20px rgba(146, 24, 13, 0.25);
  color: var(--secondary-color);
}

.bg-light {
  background-color: #f9f9f9 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .live-badge {
    top: 10px;
    right: 10px;
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .stream-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-items {
    grid-template-columns: 1fr;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .stream-status h3 {
    font-size: 1.1rem;
  }

  .stream-time {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .live-video-container {
    margin-bottom: 1.5rem;
  }

  .stream-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .highlight-item {
    padding: 10px;
  }

  .feature-card {
    padding: 15px;
  }

  .support-card {
    padding: 20px;
  }
}
.sticky-box {
  position: sticky;
  top: 100px;
  height: fit-content;
  align-self: flex-start;
}
.temple-complex-box .content-box h3 {
  color: var(--primary-color);
  font-size: 28px;
  margin-bottom: 25px;
}
.temple-complex-box .img-box {
  position: relative;
  overflow: hidden;
  display: block;
}
.temple-complex-box .img-box img {
  border-radius: 10px;
  border: 2px solid #ad8e00;
}
.temple-complex-box .img-box::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 1;
  pointer-events: none;
}
.temple-complex-box .img-box:hover::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.support-img-1 {
  position: absolute;
  right: 0%;
  bottom: -20px;
  max-height: 100%;
}
.support-img-2 {
  border: 2px solid var(--white-color);
}
.alert-modal .modal-header {
  background: var(--liner-gradient-footer);
  color: #fff;
}
.alert-modal .modal-header .modal-title {
  font-size: 16px;
}
.alert-modal p {
  text-align: justify;
}
.alert-modal .btn-close {
  color: #fff;
  filter: brightness(0) invert(1);
  opacity: 1;
}
.btn-close:focus {
  box-shadow: none;
}
/* ------------------------------------------------
All India Samaj Timeline
-------------------------------------------------*/
.samaj-timeline-section .samaj-timeline {
  position: sticky;
  top: 120px;
  padding-right: 15px;
  /* border-left: 2px solid var(--secondary-color-dark); */
  padding-left: 35px;
  z-index: 999;
  max-height: 800px;
  overflow-y: auto;
}
.samaj-timeline-section .samaj-timeline.no-scroll {
  max-height: unset;
  overflow-y: unset;
}
.samaj-timeline-section .samaj-timeline::before {
  content: "";
  display: block;
  background-color: var(--secondary-color-dark);
  width: 2px;
  /* height: 100%; */
  height: 460%;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 8px;
  overflow: hidden;
}
.samaj-timeline-section .samaj-timeline.no-scroll::before {
  height: 100%;
}
.samaj-timeline-section .timeline-item {
  position: relative;
  display: block;
  text-decoration: none;
  margin-bottom: 35px;
  text-align: start;
}

.samaj-timeline-section .timeline-item::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--secondary-color-dark);
  border-radius: 50%;
  left: -33px;
  top: 28px;
  transition: 0.3s;
}

.samaj-timeline-section .timeline-year {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
  transition: 0.3s;
}

.samaj-timeline-section .timeline-title {
  color: #222;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  transition: 0.3s;
}

/* HOVER */
.samaj-timeline-section .timeline-item:hover .timeline-year,
.samaj-timeline-section .timeline-item.active .timeline-year {
  background: linear-gradient(98deg, #99100a 5%, #e75a08 95%);
}

.samaj-timeline-section .timeline-item:hover .timeline-title {
  color: var(--primary-color);
}

.samaj-timeline-section .timeline-item:hover::before {
  background: var(--primary-color);
}

.samaj-timeline-section .timeline-item.active .timeline-title {
  color: var(--primary-color);
  font-weight: 700;
}

.timeline-item.active::before {
  background: var(--primary-color);
}

.samaj-timeline-section .samaj-history-section .accordion-item {
  scroll-margin-top: 120px;
  scroll-padding-top: 120px;
}
.timeline-imgbox {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  margin-bottom: 20px;
}
.timeline-imgbox img {
  border: 2px solid #ad8e00;
}
.timeline-imgbox span {
  color: #777;
}
@media (max-width: 991px) {
  .samaj-timeline-section .samaj-timeline {
    display: none;
  }
  .sticky-box {
    position: static;
  }
}
/* .vision-mission-home-section .container {
  padding: 40px;
  background: var(--liner-gradient);
  color: var(--white-color);
  border-radius: 25px;
}
.vision-mission-home-section .container .section-title h2 {
  color: var(--white-color);
}
.vision-mission-home-section .container b {
  color: var(--secondary-bg-dark);
} */
/* =====================================================
VISION & MISSION SCROLL SECTION
===================================================== */

.vision-mission-home-section {
  position: relative;
  padding: 80px 0;
  background: #efe4cf;
}
.vision-mission-home-section .container {
  position: relative;
  padding: 80px 70px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    #a90b0b 0%,
    #a50010 12%,
    #ff1028 50%,
    #a50010 85%,
    #a90b0b 100%
  );
  box-shadow:
    inset 0 0 35px rgba(255, 255, 255, 0.1),
    inset 0 0 80px rgba(0, 0, 0, 0.35),
    0 20px 45px rgba(0, 0, 0, 0.2);
  max-width: 1290px;
}
.vision-mission-home-section .container::before,
.vision-mission-home-section .container::after {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 40px;
  width: 3px;
  background: linear-gradient(to bottom, #fff4b5, #d89b00, #fff4b5);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.55);
}

.vision-mission-home-section .container::before {
  left: 28px;
}
.vision-mission-home-section .container::after {
  right: 28px;
}
.vision-mission-home-section .scroll-top,
.vision-mission-home-section .scroll-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 40px;
  border-radius: 40px;
  background: linear-gradient(180deg, #ffd86f, #c97800, #ffefb0);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.45),
    inset 0 -3px 6px rgba(0, 0, 0, 0.15),
    0 5px 25px rgba(0, 0, 0, 0.13);
  opacity: 1;
  visibility: visible;
  cursor: default;
}
.vision-mission-home-section .scroll-top {
  top: -20px;
}
.vision-mission-home-section .scroll-bottom {
  bottom: -14px;
}
.vision-mission-home-section .scroll-top::before,
.vision-mission-home-section .scroll-top::after,
.vision-mission-home-section .scroll-bottom::before,
.vision-mission-home-section .scroll-bottom::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 1px;
  background: radial-gradient(circle at 30% 30%, #fff0b5, #d89b00 70%);
  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.5),
    0 2px 5px rgba(0, 0, 0, 0.35);
}
.vision-mission-home-section .scroll-top::before,
.vision-mission-home-section .scroll-bottom::before {
  left: -12px;
}
.vision-mission-home-section .scroll-top::after,
.vision-mission-home-section .scroll-bottom::after {
  right: -12px;
}
.vision-mission-home-section .section-title h2 {
  color: #ffe9a8;
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 35px;
  line-height: 1.3;
}
.vision-mission-home-section p {
  color: var(--white-color);
  font-size: 16px;
  line-height: 2;
  text-align: justify;
  margin-bottom: 24px;
}
.vision-mission-home-section b {
  color: #ffe49a;
  font-weight: 700;
}
.vision-mission-home-section .about-main-img-box {
  margin-top: 30px;
  text-align: center;
}
.vision-mission-home-section .about-main-img {
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1400px) {
  .vision-mission-home-section .container {
    max-width: 1110px;
  }
}
@media (max-width: 1200px) {
  .vision-mission-home-section .container {
    max-width: 930px;
  }
}
@media (max-width: 991px) {
  .vision-mission-home-section .container {
    padding: 70px 40px;
    max-width: 700px;
  }
  .vision-mission-home-section .section-title h2 {
    font-size: 32px;
  }
  .vision-mission-home-section p {
    font-size: 16px;
    line-height: 1.9;
  }
}
@media (max-width: 767px) {
  .vision-mission-home-section {
    padding: 60px 0;
  }
  .vision-mission-home-section .container {
    padding: 60px 25px;
    max-width: 515px;
  }
  .vision-mission-home-section .section-title h2 {
    font-size: 26px;
  }
  .vision-mission-home-section p {
    font-size: 15px;
    line-height: 1.8;
  }
  .vision-mission-home-section .scroll-top,
  .vision-mission-home-section .scroll-bottom {
    display: none;
  }
  .vision-mission-home-section .container::before,
  .vision-mission-home-section .container::after {
    display: none;
  }
}
.link-btn-box {
  margin-top: 40px;
}
.link-btn-box img {
  width: 36px;
}
.link-btn-box a {
  transition: all 0.3s ease;
}
.link-btn-box a:hover {
  letter-spacing: 1px;
}
.fs-32 {
  font-size: 32px !important;
}
/* -------------------------------------------
Pooja Table 
--------------------------------------------- */
.pooja-wrapper {
  margin: auto;
  background: #fff;
  padding: 20px;
  border: 1px solid #ccc;
  overflow-x: auto;
  font-family: Inter, sans-serif;
}

.pooja-title,
.aarathi-title {
  text-align: center;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.aarathi-title {
  margin-top: 25px;
  margin-bottom: 10px;
}

.pooja-table-responsive {
  width: 100%;
  overflow-x: auto;
}

.pooja-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.pooja-table th {
  background: var(--primary-color);
  color: var(--white-color);
}

.pooja-table th,
.pooja-table td {
  border: 1px solid #9999998a;
  padding: 8px;
}

.pooja-table td {
  padding: 6px;
}

.pooja-notes {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.6;
  padding-left: 20px;
  list-style: disc;
}

.pooja-condition {
  text-align: right;
}
.maharaj-content-box {
  background: #ffd9000f;
  border: 1px dashed var(--primary-color);
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.text-box {
  border: 1px dashed rgba(0, 0, 0, 0.2);
  padding: 20px;
}
