* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Bitter", serif;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: #fff;
  overflow-x: hidden;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4px;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
}

.header.scrolled {
  position: fixed;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo img {
  height: 100px;
}

/* NAVIGATION */
.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  text-decoration: none;
  color: #8F0D06;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  display: flex;
  align-items: center;
  position: relative;
  padding-bottom: 8px;
}

.nav a.active {
  font-weight: 700;
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  width: 6px;
  height: 6px;
  background: #8F0D06;
  border-radius: 50%;
}

.nav a:focus-visible {
  outline: none;
}

.nav-item {
  position: relative;
}

.arrow {
  font-size: 14px;
  margin-left: 10px;
}

.dropdown-menu {
  position: absolute;
  top: 40px;
  left: 0;
  width: 220px;
  background: #ffffff;
  border: 1px solid #ddd;
  list-style: none;
  display: none;
  z-index: 999;
}

.dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 8px 22px;
}

.dropdown-menu li a {
  color: #8F0D06;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  display: block;
}

.dropdown-menu li:hover {
  background: #8F0D06;
}

.nav a.active {
  font-weight: 700;
}

.dropdown-menu li a.active {
  font-weight: 700;
}

.dropdown-menu li:hover a {
  color: #ffffff;
}

/* ACTIVE DROPDOWN */
.dropdown.open .dropdown-menu {
  display: block;
}

/* Language button + Google Translate overlay */
.translate-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.language-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  background: #8F0D06;
  color: #F8C500;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Bitter", serif;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
  z-index: 1;
}

.goog-te-gadget {
  font-family: arial;
  font-size: 11px;
  color: #8F0D06 !important;
  white-space: nowrap;
}

.language-btn:hover {
  background: #7a0b05;
  color: #F8C500;
}

.google-translate-dropdown {
  position: absolute;
  inset: 0;
  z-index: 2;
}

#google_translate_element,
#google_translate_element .goog-te-gadget,
#google_translate_element .skiptranslate {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 38px !important;
}

#google_translate_element span,
#google_translate_element img,
#google_translate_element a {
  display: none !important;
}

#google_translate_element select.goog-te-combo {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 38px !important;
  opacity: 0 !important;
  cursor: pointer !important;
  z-index: 10 !important;
  border: none !important;
  background: transparent !important;
}

.goog-te-banner-frame,
html.translated-ltr,
html.translated-rtl {
  top: 0 !important;
}

/* HEADER RIGHT */
.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.call-btn {
  background: #8F0D06;
  color: #F8C500;
  padding: 4px 14px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  height: 100vh;
  background: url("/images/temple.png") center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.2));
}

.hero-content {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-text h1 {
  color: #8F0D06;
  font-size: 46px;
  line-height: 60px;
  font-weight: 400;
  max-width: 600px;
}

.hero-text span {
  font-weight: bold;
}

.add-bottom {
  height: 10px;
  width: 100%;
  background-color: #E37C16;
}

/*about Section */
.about-section {
  padding: 60px 20px;
  background: #fff;
}

/* Container */
.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Left Content */
.about-content {
  flex: 1;
}

.about-content h2 {
  color: #970505;
  font-size: 50px;
  font-weight: 400;
  line-height: 60px;
  margin-bottom: 43px;
}

.about-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #333;
  margin-bottom: 12px;
}

/* Button */
.btn {
  display: inline-block;
  padding: 22px 38px;
  background: #970505;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
}

.btn:hover {
  background: #a30000;
}

/* Right Image */
.about-image img {
  width: 100%;
  height: 470px;
  display: block;
}

/*darshan Section */
.darshan-section {
  background: #F8C500;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.darshan-background {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url("/images/darshan_bg.png") center/cover no-repeat;
  z-index: 0;
}

/* Container */
.darshan-container {
  position: relative;
  z-index: 1;
}

/* Decorative Pattern */
.pattern {
  height: 24px;
  background: url("/images/design_top_bottom.png") center/cover no-repeat;
  margin: 0 200px;
}

.pattern.top {
  margin-bottom: 50px;
}

.pattern.bottom {
  margin-top: 50px;
}

/* Title */
.section-title {
  text-align: center;
  color: #970505;
  font-size: 50px;
  font-weight: 400;
  line-height: 60px;
  margin-bottom: 47px;
}

/* Cards Wrapper */
.darshan-cards {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  width: 100%;
}

.darshan-card {
  width: 50%;
}

/* Card Title */
.card-title {
  background: #970505;
  color: #fff;
  padding: 20px 30px;
  border-radius: 0 50px 50px 0;
  width: 100%;
  margin-bottom: 10px;
  font-size: 40px;
  line-height: 30px;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

/* Video Box */
.video-box {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  background: #000;
}

.video-box img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.video-box video {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* Play Button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  cursor: pointer;
}

.play-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 16px solid #970505;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

/* PAUSE ICON */
.play-btn.pause::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  background: linear-gradient(to right,
      #970505 0,
      #970505 6px,
      transparent 6px,
      transparent 12px,
      #970505 12px,
      #970505 18px);
  border: none;
}

/* event Section */
.events-section {
  background: #fff;
  padding: 50px 20px 50px;
}

.events-slider {
  padding-bottom: 50px;
  overflow: hidden;
}

.events-slider .swiper-wrapper {
  align-items: stretch;
  display: flex;
  flex-wrap: nowrap;
}

.events-slider .swiper-slide {
  height: auto;
  display: flex;
  flex-shrink: 0;
  box-sizing: border-box;
}

/* Title */
.events-title {
  text-align: center;
  color: #970505;
  font-size: 50px;
  line-height: 60px;
  font-weight: 400;
  margin-bottom: 48px;
}

/* Card */
.event-card {
  background: #D26218;
  border-radius: 30px;
  overflow: visible;
  position: relative;
  padding: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  max-width: 100%;
}

/* Image */
.event-img {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.event-img img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 16px;
  display: block;
  height: 250px;
}

/* Date Badge */
.event-date {
  background: #fff;
  color: #970505;
  font-size: 20px;
  line-height: 20px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 400;
}

/* Content */
.event-content {
  padding-top: 20px;
  color: #fff;
  padding-bottom: 50px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.event-content h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  min-height: 60px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

/* Arrow Button */
.arrow-btn {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  background: #fff;
  color: #D26218;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.arrow-icon {
  width: 22px;
  height: 4px;
  background: #D26218;
  position: relative;
  border-radius: 4px;
}

.arrow-icon::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -6px;
  width: 12px;
  height: 12px;
  border-right: 4px solid #D26218;
  border-bottom: 4px solid #D26218;
  transform: rotate(-45deg);
  border-radius: 4px;
}

/* Bottom Button */
.center-btn {
  text-align: center;
  margin: 40px;
}

.check-more {
  background: #970505;
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.check-more span {
  padding-left: 10px;
}

/* join Section */
.join-parivar {
  background-color: #970505;
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
}

.join-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url("/images/join_p_bg.jpg") center/cover no-repeat;
  z-index: 0;
}

.join-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(151, 5, 5, 0.85);
}


/* Container */
.parivar-container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

/* Title */
.parivar-container h2 {
  font-size: 40px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 27px;
}

/* Text */
.parivar-container p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 20px;
}

/* Store Buttons */
.store-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.store-btn {
  background: #fff;
  color: #333;
  border-radius: 20px;
  padding: 17px 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  max-width: 360px;
}

/* Text */
.store-btn .text {
  text-align: left;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

/*info Section */
.info-section {
  padding: 40px 20px;
  background: #fff;
}

.info-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

/* Card */
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

/* Header */
.card-header {
  background: #D26218;
  color: #fff;
  padding: 12px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-header h3 {
  font-size: 30px;
  line-height: 30px;
  font-weight: 400;
}

.header-btn {
  background: #fff;
  color: #970505;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  text-decoration: none;
}

/* Donations */
.donation-body {
  display: flex;
  gap: 50px;
  padding: 20px 54px 28px 20px;
}

.donation-img img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
}

.donation-content p {
  font-size: 18px;
  line-height: 20px;
  color: #333;
  margin-bottom: 6px;
  font-weight: 400;
}

.donation-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.donation-tags span {
  background: #fff;
  color: #333;
  padding: 10px 30px;
  border-radius: 20px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  box-shadow: 5px 5px 8px 0px #00000026;
}

/* Blogs */
.blog-list {
  padding: 20px 30px;
  list-style: none;
}

.blog-list li {
  background: #fff;
  padding: 10px 12px;
  margin-bottom: 10px;
  border-radius: 10px;
  box-shadow: 5px 5px 8px 0px #00000026;
  font-size: 18px;
  line-height: 20px;
  display: flex;
  font-weight: 400;
  align-items: center;
}

.blog-list li div {
  font-weight: 400;
  font-size: 20px;
  margin-right: 10px;
}

/* footer section */
.site-footer {
  background-color: #2f2f2f;
  background-image: url("/images/pattern.png");
  /* optional pattern */
  background-repeat: repeat;
  color: #dcdcdc;
  font-family: Arial, sans-serif;
}

.footer-inner {
  padding: 40px 0;
  display: grid;
  gap: 30px;
  align-items: flex-start;
  grid-template-columns: 1fr 2fr 1fr;
}

.footer-inner>* {
  min-width: 0;
}

.footer-logo img {
  max-width: 100%;
}

.footer-links {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 2fr;
}

.link-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-col h4 {
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  position: relative;
  margin-bottom: 8px;
}

.link-col h4::after {
  content: " ";
  position: absolute;
  top: 42%;
  margin-left: 15px;
  width: 78%;
  border-top: 3px solid #606060;
}

.link-col li {
  margin-bottom: 8px;
}

.second-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.link-col a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  border-bottom: 1px solid #606060;
  display: block;
  width: 100%;
}

.link-col a:hover {
  color: #ffffff;
}

.link-col li:last-child a {
  border-bottom: none;
}

.footer-social h4 {
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  position: relative;
  margin-bottom: 30px;
}

.footer-social h4::after {
  content: " ";
  position: absolute;
  top: 42%;
  margin-left: 15px;
  width: 78%;
  border-top: 3px solid #606060;
}

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

.social-icons a {
  width: 100%;
  padding: 15px 40px;
  border: 1px solid #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons img {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  background: #ffffff;
  color: #606060;
  text-align: center;
  padding: 16px 10px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.section-title,
.events-title {
  text-align: center;
}

/* Laptop: slightly smaller fonts for better fit */
@media (max-width: 1200px) {
  .nav {
    gap: 10px;
  }

  .nav a {
    font-size: 17px;
    line-height: 26px;
  }

  .hero-text h1 {
    font-size: 42px;
    line-height: 52px;
  }

  .about-content h2 {
    font-size: 44px;
    line-height: 54px;
    margin-bottom: 36px;
  }

  .about-content p {
    font-size: 17px;
    line-height: 26px;
  }

  .btn {
    font-size: 18px;
    padding: 20px 34px;
  }

  .about-image img {
    height: 350px;
  }

  .events-title {
    font-size: 44px;
    line-height: 54px;
    margin-bottom: 40px;
  }

  .event-content h3 {
    font-size: 22px;
    line-height: 28px;
    min-height: 56px;
  }

  .event-content p {
    font-size: 17px;
    line-height: 26px;
  }

  .event-date {
    font-size: 18px;
    padding: 10px 18px;
  }

  .check-more {
    font-size: 17px;
    padding: 14px 32px;
  }

  .parivar-container h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 24px;
  }

  .parivar-container p {
    font-size: 17px;
    line-height: 26px;
  }

  .store-btn .text {
    font-size: 17px;
    line-height: 26px;
  }

  .donation-body {
    padding: 20px;
    gap: 20px;
  }

  .donation-img img {
    width: 120px;
    height: 120px;
    min-width: 120px;
    min-height: 120px;
  }

  .donation-tags span {
    padding: 10px 14px;
  }

  .footer-logo img {
    max-width: 100%;
  }

  .social-icons {
    gap: 20px;
  }

  .social-icons a {
    padding: 16px;
  }

  .pattern {
    margin: 0 100px;
  }

  .events-section {
    padding: 80px 20px 72px;
  }
}

@media (max-width: 992px) {

  /* HEADER */
  .nav {
    gap: 18px;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-top: 3px solid #8F0D06;
    border-radius: 0 0 12px 12px;
    z-index: 999;

    animation: slideDown 0.3s ease;
  }

  .call-btn {
    font-size: 14px;
    padding: 6px 10px;
  }

  .translate-wrapper {
    flex-shrink: 0;
  }

  .language-btn {
    padding: 6px 12px;
    font-size: 14px;
    min-width: 44px;
  }

  /* HERO */
  .hero {
    height: 80vh;
  }

  .hero-text h1 {
    font-size: 36px;
    line-height: 42px;
  }

  /* ABOUT */
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content h2 {
    font-size: 38px;
    line-height: 46px;
    margin-bottom: 32px;
  }

  .about-content p {
    font-size: 17px;
    line-height: 26px;
  }

  .btn {
    font-size: 17px;
    padding: 18px 30px;
  }

  /* EVENTS – tablet */
  .events-section {
    padding: 72px 20px 64px;
  }

  .events-title {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 36px;
  }

  .event-content h3 {
    font-size: 20px;
    line-height: 26px;
    min-height: 52px;
  }

  .event-content p {
    font-size: 16px;
    line-height: 24px;
  }

  .event-date {
    font-size: 16px;
    padding: 10px 16px;
  }

  .check-more {
    font-size: 17px;
    padding: 14px 28px;
  }

  /* JOIN – tablet */
  .parivar-container h2 {
    font-size: 34px;
    line-height: 40px;
    margin-bottom: 22px;
  }

  .parivar-container p {
    font-size: 16px;
    line-height: 26px;
  }

  .store-btn .text {
    font-size: 16px;
    line-height: 24px;
  }

  /* DARSHAN */
  .darshan-cards {
    flex-direction: column;
  }

  .darshan-card {
    width: 100%;
  }

  /* INFO */
  .info-container {
    grid-template-columns: 1fr;
  }

  .donation-body {
    flex-direction: row;
    padding: 20px;
    gap: 20px;
  }

  .donation-img img {
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height: 100px;
  }

  .donation-content p {
    font-size: 16px;
  }

  .donation-tags {
    gap: 10px;
  }

  .donation-tags span {
    padding: 6px 16px;
    font-size: 16px;
  }

  .blog-list li {
    align-items: start;
    font-size: 16px;
  }

  /* FOOTER */
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .second-col {
    grid-template-columns: 1fr 1fr;
  }

  .social-icons {
    grid-template-columns: repeat(4, auto);
    justify-content: center;
  }

  .footer-social h4::after {
    position: unset;
  }

  .link-col h4::after {
    position: unset;
  }
}

@media (max-width: 768px) {
  .header {
    background-color: white;
  }

  .logo img {
    width: 150px;
    height: 60px;
  }

  .translate-wrapper {
    flex-shrink: 0;
  }

  .language-btn {
    padding: 8px 14px;
    font-size: 14px;
    min-width: 90px;
  }

  .menu-toggle {
    display: block;
    font-size: 20px;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    display: none;
  }

  .nav.show {
    display: flex;
  }

  .nav a {
    font-size: 16px;
    line-height: 24px;
  }

  .nav a.active::after {
    display: none;
  }

  .call-btn {
    display: none;
  }

  /* HERO */
  .hero {
    height: 60vh;
  }

  .hero-text h1 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
  }

  .about-image img {
    height: 300px;
  }

  /* ABOUT – mobile */
  .about-section {
    padding: 40px 16px;
  }

  .about-content h2 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 24px;
  }

  .about-content p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
  }

  .btn {
    padding: 14px 24px;
    font-size: 16px;
    line-height: 24px;
  }

  .pattern {
    margin: 0;
  }

  .pattern.top {
    margin-bottom: 20px;
  }

  /* DARSHAN */
  .section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .card-title {
    font-size: 20px;
    padding: 12px 18px;
  }

  .video-box img {
    height: 200px;
  }

  /* EVENTS – mobile */
  .events-section {
    padding: 48px 16px 56px;
  }

  .events-title {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 28px;
  }

  .event-date {
    font-size: 13px;
    line-height: 18px;
    padding: 10px 14px;
  }

  .event-card {
    min-height: 380px;
  }

  .event-img img {
    height: 180px;
  }

  .event-content h3 {
    font-size: 18px;
    line-height: 24px;
    min-height: 48px;
  }

  .event-content p {
    font-size: 14px;
    line-height: 22px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .events-slider {
    padding-bottom: 44px;
  }

  .check-more {
    font-size: 16px;
    line-height: 24px;
    padding: 12px 24px;
  }

  .center-btn {
    margin-top: 36px;
  }

  /* JOIN – mobile */
  .join-parivar {
    padding: 40px 16px;
  }

  .parivar-container h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 18px;
  }

  .parivar-container p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 18px;
  }

  .store-btn {
    padding: 12px 20px;
  }

  .store-btn .text {
    font-size: 14px;
    line-height: 22px;
  }

  /* DONATION */
  .card-header {
    padding: 12px;
  }

  .card-header h3 {
    font-size: 20PX;
  }

  .header-btn {
    font-size: 14PX;
  }

  .donation-img img {
    width: 60px;
    min-width: 60px;
    height: 60px;
    min-height: 60px;
  }

  .donation-content p {
    font-size: 12px;
  }

  .donation-tags {
    gap: 10px;
  }

  .donation-tags span {
    padding: 6px 16px;
    font-size: 12px;
  }

  .blog-list li {
    align-items: start;
    font-size: 12px;
  }

  /* FOOTER */
  .footer-bottom {
    font-size: 14px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    min-width: 0;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .footer-logo img {
    width: 100%;
    height: 110px;
  }

  .footer-social h4::after {
    position: unset;
  }

  .link-col h4::after {
    position: unset;
  }

  .social-icons {
    grid-template-columns: repeat(2, auto);
  }

  .footer-bottom {
    font-size: 13px;
    line-height: 22px;
    padding: 12px 10px;
  }

  .link-col h4,
  .footer-social h4 {
    font-size: 15px;
    line-height: 26px;
  }

  .link-col a {
    font-size: 14px;
    line-height: 26px;
  }
}