:root {
  --primary: #f87726;
  --primary2: #b62603;
  --primary-dark: #e86615;
  --light: #fff8f2;
  --text: #333;
}

.top-header {
  background: #fff;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.logo-link img {
  width: 90px;
}

.logo-text h2 {
  margin: 0;
  color: var(--primary2);
  font-size: 35px;
  font-weight: 700;
  line-height: 1.1;
  font-family: "Urbanist", sans-serif;
  margin-bottom: 5px;
}

.logo-text span {
  color: #fff;
  font-size: 15px;
  font-family: "Merriweather", serif;
  text-align: center;
  display: block;
}

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

.donate-btn {
  background: var(--primary2);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  font-family: "Rubik", sans-serif;
  font-size: 15px;
}

.donate-btn:hover {
  background: var(--primary-dark);
  color: #fff;
}

.mobile-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 28px;
  color: var(--primary);
}

/* NAVBAR */

.main-navbar {
  background: var(--primary);
  z-index: 999;
}

.desktop-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}

.desktop-menu > li {
  position: relative;
}

.desktop-menu > li > a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  font-weight: 500;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
}

.desktop-menu > li:hover > a {
  background: rgba(255, 255, 255, 0.12);
}

/* SUBMENU */

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #fff;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  display: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 99;
}

.submenu li a {
  display: block;
  padding: 6px 20px;
  color: #333;
  text-decoration: none;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
}

.submenu li a:hover {
  background: #fff3ea;
  color: var(--primary);
}

.dropdown-menu-item:hover .submenu {
  display: block;
}

/* MEGA MENU */

.mega-menu-item {
  position: relative;
}

.mega-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 700px;
  max-width: 95vw;
  background: #fff;
  display: none;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  gap: 30px;
  transition: 0.5s ease-in-out;
  z-index: 99;
}

.mega-column {
  flex: 1;
}

.mega-column h5 {
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 700;
  font-family: "Urbanist", sans-serif;
}

.mega-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-column ul li a {
  display: block;
  padding: 4px 0;
  color: #444;
  text-decoration: none;
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  line-height: 1.3;
}

.mega-column ul li a:hover {
  color: var(--primary);
}

.mega-menu-item:hover .mega-menu {
  display: flex;
}

/* STICKY */

.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: slideDown 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* MOBILE */

.mobile-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-header img {
  width: 60px;
}

.mobile-close {
  cursor: pointer;
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f5f5f5;
}

.mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  border-bottom: 1px solid #eee;
}

.mobile-menu li a {
  display: block;
  padding: 14px 20px;
  color: #333;
  text-decoration: none;
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.mobile-menu li a:hover {
  color: var(--primary);
}

@media (max-width: 1199px) {
  .desktop-menu {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .logo-text h1 {
    font-size: 22px;
  }

  header .donate-btn {
    display: none;
  }
  .cus_center .donate-btn {
    display: flex;
  }
  .submenu {
    position: static;
  }

  .submenu {
    box-shadow: none;
  }
  .mobile-menu li a {
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 400;
  }
  .dropdown-menu-item:hover .submenu {
    display: inherit;
  }
  .submenu {
    background: antiquewhite;
  }
}

@media (max-width: 768px) {
  .logo-link img {
    width: 55px;
  }
.pdf_title.cus_left {
  padding: 13px;
}
  .logo-text h1 {
    font-size: 18px;
  }

  .logo-text span {
    font-size: 11px;
  }
}

.mobile-menu .submenu,
.mobile-menu .mega-menu {
  display: none;
}

.mobile-menu .dropdown-menu-item > a i,
.mobile-menu .mega-menu-item > a i {
  float: right;
  transition: 0.3s;
  margin-top: 3px;
}

.mobile-menu .dropdown-menu-item.active > a i,
.mobile-menu .mega-menu-item.active > a i {
  transform: rotate(180deg);
}

.mobile-menu .mega-menu {
  position: static;
  width: 100%;
  box-shadow: none;
  padding: 15px 20px;
  background: #f9f9f9;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu .mega-column {
  width: 100%;
}

.mobile-menu .mega-column h5 {
  margin-bottom: 8px;
  color: var(--primary2);
}

.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
}
.mobile-menu .mega-column {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.mobile-menu .mega-column:last-child {
  border: none;
}
@media (max-width: 768px) {
  .header-wrapper {
    gap: 10px;
  }

  .logo-link {
    gap: 10px;
  }

  .logo-link img {
    width: 50px;
  }

  .logo-text span {
    display: block;
    line-height: 1.2;
  }
}

/* =========================
MOBILE SIDEBAR
========================= */

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  z-index: 9998;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -340px;
  width: 320px;
  max-width: 85%;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  overflow-y: auto;
  transition: 0.4s ease;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}

.mobile-sidebar.active {
  left: 0;
}

/* HEADER */

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: bisque;
}

.mobile-header img {
  width: 55px;
}

.mobile-close {
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary);
  font-size: 18px;
}

/* MENU */

.mobile-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-menu > li {
  border-bottom: 1px solid #f1f1f1;
}

.mobile-menu > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  font-family: "Rubik", sans-serif;
  transition: 0.3s;
}

.mobile-menu > li > a:hover {
  color: var(--primary2);
}

/* ICON */

.mobile-dropdown > a i {
  transition: 0.3s;
}

.mobile-dropdown.active > a i {
  transform: rotate(180deg);
}

/* SUB MENU */

.mobile-submenu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fafafa;
}

.mobile-submenu li a {
  display: block;
  padding: 12px 30px;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  border-top: 1px solid #eee;
  transition: 0.3s;
}

.mobile-submenu li a:hover {
  color: var(--primary);
  padding-left: 36px;
}

/* MEGA MENU TITLES */

.mobile-title {
  padding: 12px 20px;
  background: #f3f3f3;
  color: var(--primary2);
  font-size: 14px;
  font-weight: 700;
  font-family: "Urbanist", sans-serif;
  border-top: 1px solid #e9e9e9;
}

/* SCROLLBAR */

.mobile-sidebar::-webkit-scrollbar {
  width: 6px;
}

.mobile-sidebar::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.mobile-sidebar::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

/* MOBILE TOGGLE BUTTON */

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 1199px) {
  .mobile-toggle {
    display: block;
  }

  .desktop-menu {
    display: none;
  }
  .mobile-submenu li a {
    padding: 8px 30px;
  }
  .mobile-menu > li > a {
    padding: 10px 20px;
  }
}

.hero-section {
  padding: 0px 0 0px;
}

/* Slider */

.hero-slider {
  margin-bottom: 25px;
}

.hero-slide {
  overflow: hidden;
  /* border-radius:12px; */
}

.hero-slide img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  display: block;
}

/* Grid */

.hero-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
  margin-top: 75px;
}

/* Common Card */

.info-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
}

/* Ramakrishna */

.ramakrishna-card {
  background: #f87726;
  padding: 35px 25px;
  text-align: center;
  border-radius: 10px;
}
.ramakrishna-card img {
  width: 300px;
  margin-bottom: 25px;
  border: 4px solid #fff0;
  object-fit: cover;
  box-shadow: 0 0 0 2px #fff;
  aspect-ratio: 2/2.2;
}
.ramakrishna-card h3 {
  color: #fff;
  font-size: 22px;
  font-family: "Merriweather", serif;
  margin-bottom: 17px;
}

/* Quote */

.quote-card {
  background: #ffbf66;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-card h3 {
  text-align: center;
  color: #b42020;
  font-size: 35px;
  margin-bottom: 20px;
  font-family: "Merriweather", serif;
}

.quote-card p {
  font-size: 18px;
  line-height: 1.5;
  color: #23405d;
  font-family: "Merriweather", serif;
  text-align: center;
  margin-bottom: 0;
  background: #fff;
  padding: 25px 18px;
  border-radius: 10px;
}

.quote-card span {
  margin-top: 30px;
  text-align: right;
  font-style: italic;
  font-size: 20px;
  text-align: center;
  font-family: "Rubik", sans-serif;
}

/* Event */

.event-card {
  background: brown;
  padding: 15px;
}

.card_logo {
  display: flex;
  box-shadow:
    inset 4px 8px 8px #0000001a,
    4px 8px 8px #0000001a;
  background: #fff;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  justify-content: center;
  align-items: center;
  margin: 20px auto 30px;
}
.card_logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.event-card h4 {
  text-align: center;
  margin: 20px 0;
  color: #ffbf66;
  font-size: 25px;
  font-weight: 700;
  font-family: "Merriweather", serif;
}

.event-card p {
  margin-bottom: 8px;
  font-size: 16px;
  color: #ffffffe0;
  font-family: "Rubik", sans-serif;
  text-align: center;
  line-height: 1.4;
}
.event-card p strong {
  font-weight: 600;
}
.event-card a {
  background: #fff;
  color: #a52a2a;
  padding: 8px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  margin: 20px auto 0;
  display: block;
  text-align: center;
  width: fit-content;
  transition: 0.5s ease-in-out;
}
.event-card a:hover {
  transition: 0.5s ease-in-out;
  background: #ffbf66;
}
.hero-slider {
  position: relative;
}

.hero-slider .owl-nav {
  margin: 0;
}

.hero-slider .owl-prev,
.hero-slider .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) !important;

  width: 50px;
  height: 50px;

  border-radius: 50% !important;

  background: rgba(255, 255, 255, 0.92) !important;

  border: 2px solid #f87726 !important;

  color: #f87726 !important;

  font-size: 22px !important;

  transition: 0.4s ease;

  display: flex !important;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hero-slider .owl-prev {
  left: 25px;
}

.hero-slider .owl-next {
  right: 25px;
}

.hero-slider .owl-prev:hover,
.hero-slider .owl-next:hover {
  background: #f87726 !important;

  color: #fff !important;

  transform: translateY(-50%) scale(1.08) !important;
}

.hero-slider .owl-prev i,
.hero-slider .owl-next i {
  line-height: 1;
}
/* Responsive */

@media (max-width: 991px) {
  .hero-info-grid {
    grid-template-columns: 1fr;
  }

  .hero-slide img {
    height: 300px;
  }

  .quote-card h3 {
    font-size: 34px;
  }
}

.about-section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.about-video-wrap {
  position: relative;
}

.about-video-wrap video {
  width: 100%;
  border-radius: 0px;
  display: block;
  position: relative;
  z-index: 2;
  padding: 10px;
  border: 2px solid #f87726;
}

/* Content */

.about-content {
  padding-left: 40px;
}

.section-tag {
  display: inline-block;
  background: #fff2e8;
  color: #f87726;
  padding: 6px 22px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.about-content h2 {
  font-size: 35px;
  margin: 20px 0 15px;
  color: #1c3554;
  font-weight: 700;
  font-family: "Merriweather", serif;
}

.divider-line {
  width: 90px;
  height: 4px;
  background: #f87726;
  margin-bottom: 25px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  text-align: justify;
  margin-bottom: 18px;
  font-family: "Merriweather", serif;
}

.about-btn {
  display: inline-block;
  margin-top: 15px;
  background: #f87726;
  color: #fff;
  padding: 10px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.about-btn:hover {
  background: #d85d12;
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .about-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .about-content h2 {
    font-size: 23px;
    margin: 15px 0 10px;
  }

  .about-section {
    padding: 0px 0;
  }
}

@media (min-width: 1300px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1270px;
  }
}

.services-section {
  padding: 70px 0;
  background: #f8f4ea;
}

.section-title {
  max-width: 800px;
  margin: auto;
  margin-bottom: 35px;
}

.section-title span {
  display: inline-block;
  padding: 6px 20px;
  background: #fff;
  color: #f87726;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  display: block;
  width: fit-content;
  margin: 0 auto 15px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  color: #1f3552;
  font-family: "Urbanist", sans-serif;
  line-height: 1.2;
}

.section-title p {
  color: #666;
  font-size: 18px;
  line-height: 1.8;
}

.service-card {
  background: #f87726;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.4s;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-thumb {
  overflow: hidden;
}

.service-thumb img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.6s;
}

.service-card:hover .service-thumb img {
  transform: scale(1.08);
}

.service-content {
  padding: 25px;
  text-align: center;
}

.service-content h4 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: "Urbanist", sans-serif;
}

.service-content p {
  color: #f2f2f2;
  line-height: 1.4;
  margin: 0;
  font-size: 15px;
  font-family: "Merriweather", serif;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media (max-width: 991px) {
  .services-section {
    padding: 40px 0;
  }

  .section-title h2 {
    font-size: 26px;
    line-height: 1.1;
  }

  .service-thumb img {
    height: 220px;
  }
}

.service_btn {
  background: #fff;
  color: #284f5b;
  padding: 5px 15px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 400;
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  margin: 20px auto 0;
  display: block;
  text-align: center;
  width: fit-content;
  transition: 0.5s ease-in-out;
}
.service_btn:hover {
  transition: 0.5s ease-in-out;
  background: #1f3552;
  color: #fff;
}

.activities-section {
  position: relative;
}

.activity-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  transition: 0.4s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #00000047;
}

.activity-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.activity-img {
  overflow: hidden;
}

.activity-img img {
  width: 100%;

  height: 260px;

  object-fit: cover;

  transition: 0.7s;
}

.activity-card:hover .activity-img img {
  transform: scale(1.08);
}

.activity-content {
  padding: 25px;
}

.activity-content span {
  display: inline-block;

  background: #fff1e8;

  color: #f87726;

  padding: 6px 16px;

  border-radius: 30px;

  font-size: 13px;

  font-weight: 600;

  margin-bottom: 15px;
}

.activity-content h4 {
  font-size: 22px;
  color: #1f3552;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: "Urbanist", sans-serif;
}

.activity-content p {
  color: #666;
  line-height: 1.4;
  margin: 0;
  font-family: "Merriweather", serif;
  font-size: 15px;
}
.sec_padding {
  padding: 70px 0 !important;
}
@media (max-width: 991px) {
  .activities-section {
    padding: 70px 0;
  }

  .activity-img img {
    height: 220px;
  }
}

.cus_center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  cursor:
    url("../images/zoom.png") 12 12,
    zoom-in;
}

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

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

/* LIGHTBOX */

#galleryLightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.77);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  backdrop-filter: blur(5px) contrast(80%);
}

#galleryLightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 10px;
}

.lb-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 50px;
  cursor: pointer;
}

.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 60px;
  cursor: pointer;
  user-select: none;
}

.lb-prev {
  left: 30px;
}

.lb-next {
  right: 30px;
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.gallery-section {
  background: #f8f4ea;
}

.news-event-section {
  background: #f8f4ea;
}

.news-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #00000038;
}

.news-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.news-content {
  padding: 35px;
}

.news-date {
  display: inline-block;
  background: #f8f4ea;
  color: #f87726;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  font-family: "Urbanist", sans-serif;
}

.news-content h3 {
  margin: 15px 0;
  font-size: 25px;
  color: #1f3552;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-content p {
  color: #666;
  line-height: 1.5;
  margin: 0;
  font-family: "Merriweather", serif;
  font-size: 16px;
  margin-bottom: 25px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.news-btn {
  display: inline-block;
  padding: 5px 28px;
  background: #f87726;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  transition: 0.3s;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
}

.news-btn:hover {
  background: #d95f12;

  color: #fff;
}

.map-box {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  padding: 10px;
  border: 1px solid #00000038;
}

.map-box h3 {
  background: #f87726;
  color: #fff;
  padding: 15px;
  margin: 0;
  text-align: center;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-size: 22px;
}

.map-box iframe {
  width: 100%;

  height: 300px;

  border: 0;
}

.news-slider .owl-nav {
  margin-top: 25px;

  text-align: left;

  display: flex;

  align-items: center;
}

.news-slider .owl-nav:after {
  content: "";

  flex: 1;

  height: 2px;

  margin-left: 20px;

  background: linear-gradient(to right, #f87726, rgba(248, 119, 38, 0.15));
}

.news-slider .owl-prev,
.news-slider .owl-next {
  width: 45px;

  height: 45px;

  border-radius: 50% !important;

  background: #fff !important;

  color: #f87726 !important;

  border: 2px solid #f87726 !important;

  margin-right: 10px;

  transition: 0.4s;
}

.news-slider .owl-prev:hover,
.news-slider .owl-next:hover {
  background: #f87726 !important;

  color: #fff !important;
}

.donation-cta-section {
  padding: 100px 0;
  background: #f87726;
  position: relative;
  overflow: hidden;
}

.donation-cta-box {
  text-align: center;
  max-width: 900px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.cta-subtitle {
  display: inline-block;
  background: rgb(255, 51, 0);
  color: #fff;
  padding: 10px 25px;
  border-radius: 40px;
  margin-bottom: 20px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Merriweather", serif;
}

.donation-cta-box h2 {
  color: #fff;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: "Urbanist", sans-serif;
}

.donation-cta-box p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 30px;
  font-family: "Merriweather", serif;
}

.donation-cta-box .donate-btn {
  background: #fff;
  color: #f87726;
  padding: 10px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: 0.4s;
  font-size: 15px;
}

.donation-cta-box .donate-btn:hover {
  transform: translateY(-4px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);

  color: #f87726;
}

@media (max-width: 991px) {
  .donation-cta-box h2 {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .donation-cta-section {
    padding: 50px 0;
  }

  .donation-cta-box h2 {
    font-size: 25px;
    margin-bottom: 10px;
  }
}

.main-footer {
  position: relative;
  padding-top: 90px;
  color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

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

.footer-logo {
  width: 75px;
  margin-bottom: 15px;
}

.footer-widget {
  margin-bottom: 40px;
}
.cus_pr {
  padding-right: 20px;
}
.footer-widget h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 20px;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
}

.footer-widget h4 {
  color: #f87726;
  margin-bottom: 25px;
  font-size: 22px;
  position: relative;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
}

.footer-widget h4:after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #f87726;
  margin-top: 10px;
}

.footer-widget .foot_txt {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  font-family: "Merriweather", serif;
  font-size: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  background: #04031a87;
  padding: 20px;
  text-align: center;
  border: 1px solid #ffffff4d;
}

.footer-widget ul {
  list-style: none;

  margin: 0;

  padding: 0;
}

.footer-widget ul li {
  margin-bottom: 8px;
  font-family: "Merriweather", serif;
  font-size: 15px;
}

.footer-widget ul li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: 0.3s;
  font-family: "Merriweather", serif;
  font-size: 15px;
}

.footer-widget ul li a:hover {
  color: #f87726;

  padding-left: 8px;
}

.footer-contact li {
  display: flex;

  gap: 12px;

  margin-bottom: 18px;

  color: rgba(255, 255, 255, 0.75);
}

.footer-contact i {
  color: #f87726;

  min-width: 18px;

  margin-top: 5px;
}

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

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-family: "Merriweather", serif;
  font-size: 14px;
  text-align: center;
}
.footer-social {
  margin-top: 20px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
  color: #fff;
  margin-right: 6px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #f87726;
  border-color: #f87726;
  color: #fff;
  transform: translateY(-4px);
}
.footer-social a img {
  width: 13px;
}
.footer-bottom p a {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 991px) {
  .main-footer {
    padding-top: 50px;
    background-size: cover !important;
  }
}

@media (max-width: 767px) {
  .footer-widget h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-social {
    margin-top: 25px;
  }
  .footer-widget p {
    font-size: 14px;
    -webkit-line-clamp: 400;
  }
  .footer-widget {
    margin-bottom: 30px;
  }
}

/* Back To Top Button */
#backToTop {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #f87726, #d35d14);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition: all 0.3s ease;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

#backToTop i {
  transition: transform 0.3s ease;
}

#backToTop:hover i {
  transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 767px) {
  #backToTop {
    width: 35px;
    height: 35px;
    right: 15px;
    bottom: 15px;
    font-size: 17px;
  }
}

.top-bar {
  background: #1f3552;
  padding: 8px 0;
  position: relative;
  z-index: 99;
}

.top-contact {
  margin: 0;

  padding: 0;

  list-style: none;

  display: flex;

  align-items: center;

  gap: 25px;
}

.top-contact li {
  display: flex;

  align-items: center;

  gap: 8px;

  color: #fff;

  font-size: 14px;
}

.top-contact li i {
  color: #f87726;
}

.top-contact li a {
  color: #fff;

  text-decoration: none;

  transition: 0.3s;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
}

.top-contact li a:hover {
  color: #f87726;
}

.top-right {
  display: flex;

  align-items: center;

  justify-content: flex-end;

  gap: 20px;
}

.top-msg {
  color: #fff;

  font-size: 14px;

  font-weight: 500;
}

.top-msg i {
  color: #f87726;

  margin-right: 5px;
}

.top-social {
  display: flex;

  align-items: center;

  gap: 8px;
}

.top-social a {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
}

.top-social a:hover {
  background: #f87726;

  color: #fff;

  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .top-bar {
    padding: 5px 0;
  }

  .top-contact {
    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;
  }

  .top-right {
    justify-content: center;

    margin-top: 8px;
  }
}

@media (max-width: 576px) {
  .top-contact {
    flex-direction: column;

    gap: 5px;
  }

  .top-msg {
    display: none;
  }
}

.info-card p {
  font-size: 16px;
  line-height: 1.5;
  color: #23405d;
  font-family: "Merriweather", serif;
  text-align: center;
  margin-bottom: 0;
  background: #fff;
  padding: 25px 18px;
  border-radius: 10px;
}

/* .hero-info-grid .info-card:nth-child(1){
    background: #2d4b66;
}
.hero-info-grid .info-card:nth-child(2){
    background: #e1b982;
}
.hero-info-grid .info-card:nth-child(3){
    background: #D4943D;
}
.hero-info-grid .info-card:nth-child(2) h3 {
  color: #a52a2a;
}
.hero-info-grid .info-card:nth-child(3) h3 {
  color: #fff;
} */

.ashram-info-strip {
  padding: 60px 0;

  background: #fff;
}

.ashram-info-inner {
  background: #f8f4ea;
  border: 1px solid rgb(31, 53, 82);
  border-radius: 15px;
  padding: 35px 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  transition: 0.4s;
  margin-top: 30px;
}

.ashram-logo {
  flex-shrink: 0;
}

.ashram-logo img {
  width: 120px;
}

.ashram-content {
  flex: 1;
  padding-left: 30px;
  border-left: 1px solid #0000002b;
}

.ashram-content h3 {
  color: #1f3552;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Urbanist", sans-serif;
}

.ashram-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  text-align: justify;
  margin-bottom: 12px;
  font-family: "Merriweather", serif;
}

.ashram-meta {
  display: flex;

  flex-wrap: wrap;

  gap: 20px;
}

.ashram-meta span {
  color: #f87726;

  font-weight: 600;
}

.ashram-meta i {
  margin-right: 6px;
}

.ashram-action {
  display: flex;

  flex-direction: column;

  gap: 12px;

  min-width: 180px;
}

.contact-btn,
.call-btn {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 8px;

  padding: 14px 25px;

  border-radius: 50px;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;
}

.contact-btn {
  background: #f87726;

  color: #fff;
}

.contact-btn:hover {
  background: #e56817;

  color: #fff;
}

.call-btn {
  background: #1f3552;

  color: #fff;
}

.call-btn:hover {
  background: #14263d;

  color: #fff;
}

.hero-slide {
  position: relative;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

/* Dark Overlay */

.hero-slide:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}

/* Caption */

.hero-caption {
  position: absolute;
  left: 80px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 650px;
  color: #fff;
  z-index: 2;
  padding: 40px;
}

.hero-caption h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
  font-family: "Urbanist", sans-serif;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.hero-caption p {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 0px;
  color: rgba(255, 255, 255, 0.92);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.hero-btn {
  display: inline-block;
  padding: 15px 35px;
  background: #f87726;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #d95f12;
  color: #fff;
  transform: translateY(-3px);
}

.gallery-slider {
  position: relative;
}

.gallery-slider .owl-nav {
  margin: 0;
}

.gallery-slider .owl-prev,
.gallery-slider .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) !important;

  width: 50px;
  height: 50px;

  border-radius: 50% !important;

  background: rgba(255, 255, 255, 0.92) !important;

  border: 2px solid #f87726 !important;

  color: #f87726 !important;

  font-size: 22px !important;

  transition: 0.4s ease;

  display: flex !important;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-slider .owl-prev {
  left: 25px;
}

.gallery-slider .owl-next {
  right: 25px;
}

.gallery-slider .owl-prev:hover,
.gallery-slider .owl-next:hover {
  background: #f87726 !important;

  color: #fff !important;

  transform: translateY(-50%) scale(1.08) !important;
}

.gallery-slider .owl-prev i,
.gallery-slider .owl-next i {
  line-height: 1;
}
.gallery-slider.owl-carousel .owl-nav.disabled {
  display: flex;
}
.about-content {
  width: 100%;
  height: 400px;
  overflow: auto;
}

@media (max-width: 767px) {
  .about-content {
    height: auto;
    overflow: visible;
  }
  .top-right {
    display: none;
  }
  .top-contact li {
    font-size: 13px;
  }
  .logo-text h2 {
    font-size: 17px;
    text-align: center;
  }
  .mobile-toggle {
    font-size: 22px;
    background: #f87726;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 33px;
    color: #fff;
  }
  .hero-slide img {
    height: 350px;
  }
  .hero-caption h2 {
    font-size: 22px;
    line-height: 1.1;
    margin-bottom: 7px;
  }
  .hero-caption p {
    font-size: 14px;
    line-height: 1.3;
  }
  .hero-caption {
    left: 0;
    max-width: 100%;
    padding: 20px;
  }
  .hero-slider .owl-prev,
  .hero-slider .owl-next {
    width: 30px;
    height: 30px;
    font-size: 16px !important;
  }
  .hero-slider .owl-prev,
  .hero-slider .owl-next {
    top: 90%;
  }
  .ramakrishna-card {
    padding: 25px 20px;
    border-radius: 8px;
  }
  .ramakrishna-card img {
    width: 140px;
    margin-bottom: 15px;
    border: 4px solid #fff0;
    box-shadow: 0 0 0 2px #fff;
  }
  .ramakrishna-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .info-card p {
    font-size: 14px;
    line-height: 1.5;
    padding: 15px 12px;
    border-radius: 8px;
  }
  .ashram-info-inner {
    flex-direction: column;
  }
  .ashram-info-inner {
    border-radius: 10px;
    padding: 25px;
    gap: 20px;
    margin-top: 30px;
  }
  .ashram-content {
    flex: 1;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid #0000002b;
  }
  .ashram-logo img {
    width: 100px;
  }
  .ashram-content {
    border-top: 1px solid #00000017;
    padding-top: 10px;
  }
  .ashram-logo img {
    width: 80px;
  }
  .ashram-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
  }
  .ashram-content p {
    font-size: 13px;
    line-height: 1.4;
    color: #555;
    text-align: center;
    margin-bottom: 12px;
  }
  .ashram-meta span {
    text-align: center;
    width: 100%;
    font-size: 15px;
  }
  .contact-btn,
  .call-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
  }
  .call-btn i {
    font-size: 16px;
  }
  .about-video-wrap video {
    padding: 5px;
  }
  .divider-line {
    width: 70px;
    height: 2px;
    margin-bottom: 12px;
  }
  .section-tag {
    font-size: 12px;
  }
  .about-content p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .about-btn {
    margin-top: 12px;
    padding: 6px 30px;
    font-size: 14px;
  }
  .about-section {
    padding-bottom: 40px;
  }
  .section-title span {
    padding: 4px 15px;
    font-size: 12px;
    margin: 0 auto 12px;
  }
  .section-title {
    margin-bottom: 22px;
  }
  .service-content {
    padding: 20px;
  }
  .service-content p {
    font-size: 14px;
  }
  .service-content h4 {
    margin-bottom: 8px;
  }
  .service_btn {
    margin: 17px auto 0;
  }
  .sec_padding {
    padding: 40px 0 !important;
  }
  .activity-content {
    padding: 20px;
  }
  .activity-content span {
    padding: 3px 12px;
    font-size: 12px;
    margin-bottom: 12px;
  }
  .activity-content h4 {
    font-size: 20px;
  }
  .activity-content p {
    font-size: 14px;
  }
  .cus_center {
    margin-top: 10px;
  }
  .gallery-slider .owl-prev,
  .gallery-slider .owl-next {
    width: 35px;
    height: 35px;
    font-size: 20px !important;
  }
  .gallery-slider .owl-next {
    right: 5px;
  }
  .gallery-slider .owl-prev {
    left: 5px;
  }
  .cta-subtitle {
    padding: 6px 20px;
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: 0px;
  }
  .donation-cta-box p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0 auto 20px;
  }
  .donation-cta-box .donate-btn {
    padding: 6px 30px;
    font-size: 14px;
  }
  .news-img img {
    height: 200px;
  }
  .news-card {
    border-radius: 10px;
  }
  .news-content {
    padding: 20px;
  }
  .news-content h3 {
    margin: 8px 0;
    font-size: 18px;
  }
  .news-content p {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.4;
  }
  .news-btn {
    padding: 5px 20px;
    font-size: 13px;
  }
  .news-slider .owl-nav {
    margin-top: 20px;
  }
  .footer-widget h4 {
    margin-bottom: 17px;
    font-size: 18px;
    font-weight: 600;
  }
  .footer-widget h4::after {
    height: 2px;
    margin-top: 8px;
  }
  .footer-widget ul li a {
    font-size: 14px;
  }
  .footer-widget ul li {
    margin-bottom: 3px;
  }
  .footer-widget ul li {
    font-size: 14px;
  }
  .footer-bottom p {
    font-size: 12px;
  }
  .footer-bottom {
    margin-top: 0;
  }
}

.page-banner {
  position: relative;
  padding: 120px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: #001736c4;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-banner-content h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: "Urbanist", sans-serif;
}

.breadcrumb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1.2;
  display: flex;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.breadcrumb-list li {
  color: #fff;
  font-size: 14px;
  font-family: "Merriweather", serif;
}

.breadcrumb-list li:not(:last-child):after {
  content: "/";
  margin-left: 12px;
  color: #f87726;
}

.breadcrumb-list li a {
  color: #f87726;
  text-decoration: none;
  transition: 0.3s;
}

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

@media (max-width: 991px) {
  .page-banner {
    padding: 90px 0;
  }

  .page-banner-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .page-banner {
    padding: 60px 0;
  }

  .page-banner-content h1 {
    font-size: 25px;
    margin-bottom: 10px;
    line-height: 1.1;
  }
  .breadcrumb-list li {
    font-size: 10px;
  }
}

/* Main container */
.intro_data {
  padding: 40px;
  border-radius: 10px;
  color: #333;
  line-height: 1.6;
  border: 1px solid #1f242e;
  background-image: linear-gradient(to top, transparent, #ffedc0);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  font-family: "Merriweather", serif;
  font-size: 16px;
  line-height: 1.6;
}

/* Headings */
.intro_data h1,
.intro_data h2,
.intro_data h3,
.intro_data h4,
.intro_data h5,
.intro_data h6 {
  margin: 0 0 15px 0;
  font-weight: 700;
  color: #15345b;
  font-family: "Urbanist", sans-serif;
}

.intro_data h1 {
  font-size: 30px;
}
.intro_data h2 {
  font-size: 25px;
}
.intro_data h3 {
  font-size: 23px;
}
.intro_data h4 {
  font-size: 20px;
}
.intro_data h5 {
  font-size: 18px;
  margin: 10px 0 5px;
  line-height: 1.2;
  color: #e86c1e;
}
.intro_data h6 {
  font-size: 18px;
}

/* Paragraphs */
.intro_data p {
  margin: 0;
  font-family: "Merriweather", serif;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* Links */
.intro_data a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: "Merriweather", serif;
}

.intro_data a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Lists */
.intro_data ul,
.intro_data ol {
  padding-left: 20px;
  margin: 0px 0 15px;
}

.intro_data ul li,
.intro_data ol li {
  font-size: 16px;
  color: #555;
  font-family: "Merriweather", serif;
}
.intro_data ul li::marker {
  color: #ec6543;
}
/* Tables */
.intro_data table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-family: "Merriweather", serif;
}

.intro_data table th,
.intro_data table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
  font-family: "Merriweather", serif;
}

.intro_data table th {
  background-color: #f2f2f2;
  font-weight: 600;
  font-family: "Merriweather", serif;
}

/* Images */
.intro_data img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin: 10px 0;
}

/* Blockquotes */
.intro_data blockquote {
  margin: 20px 0;
  padding: 15px 20px;
  background-color: #f1f1f1;
  border-left: 5px solid #007bff;
  font-style: italic;
  color: #555;
  font-family: "Merriweather", serif;
}

/* Code & Preformatted text */
.intro_data code {
  background-color: #f4f4f4;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "Merriweather", serif;
  font-size: 14px;
}

.intro_data pre {
  background-color: #f4f4f4;
  padding: 15px;
  border-radius: 5px;
  overflow-x: auto;
  font-family: "Merriweather", serif;
  font-size: 14px;
}

/* Horizontal rules */
.intro_data hr {
  border: 0;
  border-top: 1px solid #919191;
  margin: 10px 0;
}

/* Strong / Emphasis */
.intro_data strong {
  font-weight: 700;
}

.intro_data em {
  font-style: italic;
}

/* Small text */
.intro_data small {
  font-size: 12px;
  color: #777;
}
.intro_img {
  width: 100%;
  height: auto;
  overflow: hidden;
  transition: 0.5s ease-in-out;
  border-radius: 10px;
  margin-bottom: 30px;
}
.intro_img img {
  width: 100%;
  height: 100%;
  transition: 0.5s ease-in-out;
  transform: scale(1);
}
.intro_img:hover img {
  transition: 0.5s ease-in-out;
  transform: scale(1.1);
}
.intro_title {
  background: var(--primary);
  padding: 15px 25px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  font-family: "Urbanist", sans-serif;
  border-radius: 8px;
  text-align: center;
  line-height: 1.2;
}

.trustees-content {
  padding-right: 40px;
}

.trustees-content h2 {
  font-size: 35px;
  font-weight: 700;
  color: #1f3552;
  margin-bottom: 30px;
  font-family: "Urbanist", sans-serif;
  position: relative;
}

.trustees-content h2:after {
  content: "";
  width: 80px;
  height: 4px;
  background: #f87726;
  display: block;
  margin-top: 10px;
}

.trustees-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.trustees-list li {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 13px 15px;
  background: #fff1cf;
  border-left: 4px solid #f87726;
  border-radius: 0;
  transition: 0.3s;
  flex-direction: column;
}

.trustees-list li:hover {
  transform: translateX(2px);
  background: #fff2e8;
}

.trustees-list strong {
  font-weight: 600;
  margin: 0;
  font-family: "Merriweather", serif;
  font-size: 17px;
  line-height: 1.4;
  color: #555;
  margin-bottom: 3px;
}

.trustees-list span {
  color: #f87726;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

.trustees-image {
  position: relative;
}

.trustees-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .trustees-content {
    padding-right: 0;

    margin-bottom: 40px;
  }
}
.gallery_page_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 25px;
}
.news_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

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

@media (max-width: 767px) {
  .gallery_page_grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .gallery-item img {
    height: 175px;
  }
  .gallery-item {
    border-radius: 7px;
  }
}

/* Optional: responsive adjustments */
@media (max-width: 768px) {
  .intro_data {
    padding: 15px;
  }
  .intro_title {
    padding: 15px 25px;
    font-size: 18px;
    margin-bottom: 25px;
    border-radius: 5px;
  }
  .intro_data h1 {
    font-size: 24px;
    margin: 0 0 10px 0;
    line-height: 1.3;
  }
  .intro_data h2 {
    font-size: 20px;
    margin: 0 0 8px 0;
    line-height: 1.2;
  }
  .intro_data h3 {
    font-size: 18px;
    margin: 0 0 10px 0;
    line-height: 1.3;
  }
  .intro_data p {
    font-size: 14px;
    line-height: 1.5;
  }
  .trustees-content h2 {
    font-size: 25px;
    margin-bottom: 25px;
  }
  .trustees-content h2::after {
    height: 2px;
    margin-top: 10px;
  }
  .trustees-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .trustees-image img {
    border-radius: 8px;
  }
  .hero-info-grid {
    margin-top: 0px;
  }
  .about-video-wrap {
    margin-top: 30px;
  }
}

.contact-page-section {
  background: #f8f4ea;
}

.contact-grid-card {
  height: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.contact-grid-card:hover {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.contact-grid-card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: #f87726;
}

.card-icon {
  width: 50px;
  height: 50px;
  background: #f4eddb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon i {
  color: #f87726;
  font-size: 22px;
}

.contact-grid-card h3 {
  font-size: 25px;
  margin-bottom: 15px;
  color: #f87726;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  margin-bottom: 12px;
  line-height: 1.5;
  color: #555;
  font-family: "Merriweather", serif;
  font-size: 15px;
}
.contact-list li strong {
  color: #000;
}
.contact-grid-card p {
  margin-bottom: 12px;
  line-height: 1.5;
  color: #555;
  font-family: "Merriweather", serif;
  font-size: 15px;
}
.contact-grid-card p strong {
  color: #000;
}
.namaskar-box {
  margin: 25px 0 0;
  padding: 12px;
  text-align: center;
  background: #1f3552;
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  font-size: 18px;
  font-family: "Urbanist", sans-serif;
}
.namaskar-box img {
  display: block;
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin: 0 auto 10px;
}
.contact-grid-card h4 {
  color: #f87726;
  margin: 25px 0 15px;
}

.map-card {
  padding: 0;
}

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

.map-content {
  padding: 25px;
}

.map-content h3 {
  margin-bottom: 10px;
}
.map_image {
  width: 100%;
  margin-top: 20px;
}
.map_image img {
  width: 100%;
}

.contact-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  margin-top: 25px;
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1f3552;
}

.contact-form .form-control {
  width: 100%;
  height: 55px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 0 18px;
  transition: 0.3s;
  box-shadow: none;
}

.contact-form textarea.form-control {
  height: auto;
  padding: 15px 18px;
  resize: none;
}

.contact-form .form-control:focus {
  border-color: #f87726;
  box-shadow: 0 0 0 4px rgba(248, 119, 38, 0.1);
}

.contact-submit-btn {
  background: #f87726;
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

.contact-submit-btn:hover {
  background: #e56615;
  transform: translateY(-3px);
}

.contact-submit-btn i {
  margin-right: 8px;
}
.contact-form-heading {
  background-color: #f87726;
  max-width: 100%;
  padding: 30px 20px;
  border-radius: 10px;
  margin-bottom: 40px;
}
.contact-form-heading h2 {
  margin-bottom: 0 !important;
  color: #fff;
}

@media (max-width: 768px) {
  .contact-form-box {
    padding: 20px;
    border-radius: 10px;
  }
  .contact-grid-card {
    border-radius: 10px;
    padding: 20px;
  }
  .contact-grid-card h3 {
    font-size: 23px;
    margin-bottom: 10px;
  }
  .contact-list li {
    font-size: 14px;
  }
  .contact-grid-card p {
    font-size: 14px;
  }
  .contact-form-heading {
    padding: 20px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
  }
  .contact-form label {
    margin-bottom: 6px;
    font-size: 14px;
  }
  .contact-form .form-control {
    height: 42px;
    border-radius: 5px;
    padding: 0 15px;
    font-family: "Merriweather", serif;
    font-size: 12px;
  }
  .contact-form .form-group {
    margin-bottom: 20px;
  }
  .map_image {
    margin-top: 10px;
  }
  .contact-submit-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

.news-details-section {
  background: #f8f4ea;
}

.news-details-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.news-featured-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.news-details-content {
  padding: 40px;
}

.news-details-content .news-date {
  display: inline-block;
  background: #fff3ea;
  color: #f87726;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 12px;
  font-weight: 600;
}

.news-details-content h2 {
  font-size: 30px;
  color: #1f3552;
  margin-bottom: 12px;
  font-weight: 700;
  font-family: "Urbanist", sans-serif;
}

.news-details-content p {
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
  font-family: "Merriweather", serif;
  font-size: 15px;
}

.news-details-content blockquote {
  margin: 35px 0;
  padding: 25px 30px;
  background: #fff8f3;
  border-left: 5px solid #f87726;
  font-size: 22px;
  color: #1f3552;
  font-style: italic;
}

.news-details-content blockquote span {
  display: block;

  margin-top: 10px;

  color: #f87726;

  font-size: 16px;
}

/* SIDEBAR */

.sidebar-widget {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.sidebar-widget h3 {
  color: #1f3552;
  margin-bottom: 20px;
  font-size: 23px;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
}

.recent-news-item {
  display: flex;

  gap: 15px;

  margin-bottom: 20px;
}

.recent-news-item img {
  width: 90px;

  height: 75px;

  object-fit: cover;

  border-radius: 6px;
}

.recent-news-item a {
  display: block;
  color: #1f3552;
  font-weight: 600;
  text-decoration: none;
  font-family: "Urbanist", sans-serif;
  line-height: 1.2;
}

.recent-news-item span {
  font-size: 13px;

  color: #f87726;
  font-family: "Urbanist", sans-serif;
}

.category-list {
  list-style: none;

  padding: 0;

  margin: 0;
}

.category-list li {
  border-bottom: 1px solid #eee;
}

.category-list li a {
  display: block;

  padding: 12px 0;

  color: #444;

  text-decoration: none;
}

.category-list li a:hover {
  color: #f87726;
}

.sidebar-contact {
  background: linear-gradient(135deg, #f87726, #ff5a00);

  color: #fff;

  border-radius: 10px;

  padding: 35px;

  text-align: center;
}

.sidebar-contact h3 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: "Urbanist", sans-serif;
}

.sidebar-contact p {
  margin-bottom: 25px;
  font-family: "Merriweather", serif;
  font-size: 15px;
}

.sidebar-contact .contact-btn {
  display: inline-block;
  background: #fff;
  color: #f87726;
  padding: 6px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.intro_multi .intro_data {
  background-color: #fff2d1;
  border-bottom: none;
  border-radius: 0;
  background-image: none;
  box-shadow: none;
}

.intro_multi .intro_data:last-child {
  border-bottom: 1px solid #1f242e;
}
.intro_multi .intro_data:nth-of-type(2n + 2) {
  background: #fff;
}
.objective_area {
  background: #f8f4ea;
}

.objective_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.objective_box {
  background: #fff;
  border-radius: 5px;
  padding: 20px;
  position: relative;
  transition: 0.35s;
  border: 1px solid #00000036;
  display: flex;
  justify-content: center;
  align-items: center;
}

.objective_box:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}
.objective_box p {
  margin: 0;
  font-family: "Merriweather", serif;
  font-size: 15px;
  line-height: 1.5;
  color: #555;
  text-align: center;
}

.institution_type {
  margin-top: 40px;
  color: #fff;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
  background: var(--primary);
}

@media (max-width: 768px) {
  .section_heading h2 {
    font-size: 30px;
  }

  .objective_box {
    padding: 10px;
  }

  .institution_type {
    font-size: 16px;
    margin-top: 15px;
    padding: 10px;
  }
}

.levels_wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.level_card {
  position: relative;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  overflow: hidden;
  transition: 0.4s;
}
.level_card:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.level_icon {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  background: #fff5ef;
  border: 1px dashed #f87726;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #f87726;
  transition: 0.4s;
}

.level_card:hover .level_icon {
  background: #f87726;
  color: #fff;
  transform: rotateY(180deg);
}

.level_content {
  margin-top: 25px;
}

.level_content span {
  display: inline-block;
  font-size: 13px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.level_content h4 {
  margin-top: 10px;
  font-size: 18px;
  color: #222;
  font-weight: 700;
  font-family: "Merriweather", serif;
}

@media (max-width: 768px) {
  .levels_heading h2 {
    font-size: 30px;
  }

  .level_card {
    padding: 20px 12px;
  }
  .level_content {
    margin-top: 12px;
    font-size: 13px;
  }
  .level_content h4 {
    margin-top: 10px;
    font-size: 14px;
    margin-bottom: 0;
  }
}

.status_section {
  background: #f8f4ea;
}

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

.status_box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  transition: 0.35s;
  justify-content: center;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.status_box:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.status_icon {
  width: 35px;
  height: 100%;
  border-radius: 5px;
  background: #f87726;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.status_content {
  font-family: "Merriweather", serif;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  width: 90%;
}

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

@media (max-width: 768px) {
  .status_section {
    padding: 70px 0;
  }

  .status_heading h2 {
    font-size: 32px;
  }

  .status_box {
    padding: 12px;
  }
  .status_icon {
    width: 20px;
    height: 100%;
    min-width: 20px;
    font-size: 13px;
    border-radius: 3px;
  }

  .status_content {
    font-size: 14px;
    line-height: 1.5;
  }
  .status_box {
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .news-featured-image img {
    height: auto;
  }
  .news-details-content {
    padding: 15px;
  }
  .news-details-content h2 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .news-details-content p {
    margin-bottom: 15px;
    font-size: 13px;
  }
  .news-details-content blockquote {
    margin: 20px 0;
    padding: 15px 15px;
    font-size: 17px;
    line-height: 1.2;
  }
  .sidebar-widget {
    padding: 20px;
    margin-bottom: 0;
    margin-top: 30px;
  }
  .sidebar-contact {
    padding: 30px;
    margin-top: 30px;
  }
}

.school_information_area {
  background: #f8f4ea;
}

/*==========================*/

.info_row {
  display: grid;
  grid-template-columns: 250px 1fr;
  margin: 30px 0;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid;
}

.info_left {
  background: var(--primary);
  color: #fff;
  padding: 25px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.info_left i {
  font-size: 22px;
  color: #1f3552;
  margin-bottom: 20px;
  background: #fff;
  padding: 10px;
  border-radius: 32px;
  width: 50px;
  height: 50px;
  line-height: 29px;
}

.info_left h3 {
  margin: 0;
  font-size: 20px;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
}

.info_right {
  background: #ffffff;
  padding: 30px 30px;
  overflow: auto;
}

.info_right p {
  margin: 0;
  font-family: "Merriweather", serif;
  font-size: 16px;
  line-height: 1.5;
  color: #555;
}

.info_right h4 {
  color: #15345b;
  margin-bottom: 15px;
  font-size: 20px;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/*======================*/

.age_table {
  width: 100%;
  border-collapse: collapse;
}

.age_table th {
  background: #15345b;
  color: #fff;
  padding: 8px 15px;
  text-align: left;
  font-size: 16px;
  font-family: "Urbanist", sans-serif;
  line-height: 1.2;
}

.age_table td {
  border-bottom: 1px solid #ddd;
  padding: 8px 15px;
  text-align: left;
  font-size: 15px;
  line-height: 1.2;
  font-family: "Merriweather", serif;
}

.age_table tr:nth-child(even) {
  background: #f6f8fb;
}

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

  .info_left {
    padding: 12px;
  }
  .info_left h3 {
    font-size: 17px;
  }

  .info_right {
    padding: 12px;
  }
  .info_right p {
    font-size: 14px;
    text-align: center;
  }
  .school_title h2 {
    font-size: 34px;
  }
  .age_table th {
    padding: 5px;
    font-size: 13px;
  }
  .age_table td {
    padding: 5px;
    font-size: 13px;
  }
  .info_row {
    margin: 18px 0;
    border-radius: 5px;
  }
}

.both p {
  text-align: justify;
  margin: 0;
  font-family: "Merriweather", serif;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}
.both .car {
  width: 500px;
  height: auto;
  clear: both;
  float: left;
  margin: 0px 40px 15px 0;
  transition: 3s;
  position: relative;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.cus_team .team-item {
  margin: 15px 0;
}
.both .car img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transform: rotate(0deg) scale(1);
  transition: 2s;
}

.both .car:after {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  border-left: 3px #fff solid;
  border-top: 3px #fff solid;
  left: 10px;
  top: 10px;
  z-index: 1;
  transition: 2s;
}
.both .car:before {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  border-right: 3px #fff solid;
  border-bottom: 3px #fff solid;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  transition: 2s;
}
.both .car:hover:before {
  width: 150px;
  height: 150px;
  transition: 2s;
  border-color: #fff;
}
.both .car:hover:after {
  width: 150px;
  height: 150px;
  transition: 2s;
  border-color: #fff;
}
.both .car:hover img {
  transition: 2s;
  transform: scale(1.2);
}
.both .car:hover {
  transition: 2s;
}
.both iframe {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transform: rotate(0deg) scale(1);
  transition: 2s;
}
.video_bar .both .car:after,
.video_bar .both .car:before {
  display: none;
}
/*.both iframe:hover{
	  margin: 0px 35px 30px 15px;
	  border-radius: 5px;
	  transition: .5s;
	}*/
.activities-area .both .car {
  width: 370px;
  height: auto;
}
.activities-area .both .car:after {
  display: none;
}
.activities-area .both .car:before {
  display: none;
}
.activities-area .both .car:hover img {
  transition: 2s;
  transform: rotate(0deg) scale(1);
}
.both h2 {
  font-size: 25px !important;
  margin-bottom: 10px !important;
  line-height: 1.2;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
}
.both h4 {
  clear: none;
  font-size: 18px !important;
  margin-bottom: 10px !important;
  color: #3a3a3a;
  line-height: 22px;
  font-weight: 500;
}
.both h6 {
  clear: none;
  font-size: 16px !important;
  margin-bottom: 10px !important;
  color: #3a3a3a;
  font-weight: 500;
}
.both h2:after {
  display: none;
}
.both h2:before {
  display: none;
}
.both ul {
  list-style: square;
  padding-left: 15px;
  margin-bottom: 0px;
}
.both ul li {
  list-style: inherit;
  text-align: justify;
  margin: 0;
  font-family: "Merriweather", serif;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}
.both ul li::marker {
  color: #ec6543;
}
.both {
  width: 100%;
  clear: both;
  float: left;
}
.both_para {
  padding: 34px 25px 34px 25px;
  border-radius: 6px;
  margin: 20px 0;
  -webkit-box-shadow: 1.91px 10.833px 50px 0px rgba(68, 68, 68, 0.15);
  box-shadow: 1.91px 10.833px 50px 0px rgba(68, 68, 68, 0.15);
  border-left: 5px solid #ec6543;
  background: #fff;
}
.both_para ul {
  list-style: square;
  padding-left: 15px;
  margin-bottom: 20px;
}
.both_para ul li {
  list-style: inherit;
}
.both_para ul li::marker {
  color: #ec6543;
}
.both_para h2 {
  clear: none;
  font-weight: 600;
  font-size: 20px !important;
  line-height: 23px;
  margin-bottom: 6px !important;
}
.both_para p {
  margin: 0px;
}
.sec_padding5 {
  padding: 50px 0 !important;
}
.no_after .both .car::after {
  display: none;
}
.no_after .both .car::before {
  display: none;
}
.partner_page .both {
  margin: 15px 0;
  padding: 15px;
}

.partner_page .both:nth-of-type(2n + 2) .car {
  margin: 0px 0 20px 0px;
}
.partner_page .both {
  margin: 20px 0;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 40px;
}
.partner_page .both .car {
  width: 440px;
}
.partner_page .both:nth-of-type(2n + 2) .car {
  float: right;
  margin: 0px 0 15px 40px;
}
.both_para p {
  text-align: justify;
}

@media (max-width: 991px) {
  .both .car {
    width: 100%;
    height: auto;
    margin: 0 0 20px 0;
  }
  .both .car::after {
    width: 50px;
    height: 50px;
  }
  .both .car::before {
    width: 50px;
    height: 50px;
  }
  .activities-area .both .car {
    width: 100%;
    height: auto;
  }
  .both h2 {
    font-size: 22px !important;
  }
  .both .car:hover::before {
    width: 100px;
    height: 100px;
  }
  .both .car:hover::after {
    width: 100px;
    height: 100px;
  }
  .both .car::before {
    display: none;
  }
  .both .car::after {
    display: none;
  }
  .both_para {
    padding: 25px 15px 25px 15px;
    margin: 12px 0;
  }
  .sec_padding5 {
    padding: 35px 0 !important;
  }
  .partner_page .both .car {
    width: 100%;
  }
  .partner_page .both {
    margin: 12px 0;
    padding: 15px;
  }

  .both ul li {
    text-align: justify;
  }
}

/*==========================
Facilities & Activities
==========================*/

.facility_section {
  background: #f8f4ea;
}

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

.facility_card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  transition: 0.3s;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.facility_card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.facility_card h3 {
  font-size: 22px;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f3f3f3;
  text-transform: capitalize;
  font-weight: 700;
  color: #15345b;
  font-family: "Urbanist", sans-serif;
}

.facility_card p {
  margin: 0;
  font-family: "Merriweather", serif;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* Tablet */

@media (max-width: 991px) {
  .facility_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */

@media (max-width: 767px) {
  .facility_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .facility_card {
    padding: 20px;
  }

  .facility_card h3 {
    font-size: 18px;
    margin: 0 0 10px;
    padding-bottom: 10px;
  }
  .facility_card p {
    font-size: 14px;
    line-height: 1.5;
  }
}

.ashram-info-inner.cus_mb_5 {
  margin-top: 0px;
  margin-bottom: 30px;
}
.cus_mb_5 {
  margin-top: 30px;
  border-radius: 0;
  border: 1px solid #1f242e;
}
.intro_data ul li strong,
.intro_data ol li strong {
  font-weight: 500;
}
.cus_bg {
  background: #f8f4ea;
}
.cus_bg_no {
  background: #fff;
}
.cus_mt_5 {
  margin-top: 30px;
}

/*=========================
Gallery Pagination
=========================*/

.gallery-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.gallery-pagination a,
.gallery-pagination span {
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  font-family: "Urbanist", sans-serif;
}

.gallery-pagination .page-btn {
  width: auto;
  padding: 0 12px;
}

.gallery-pagination a:hover {
  background: #f87726;
  border-color: #f87726;
  color: #fff;
  transform: translateY(-3px);
}

.gallery-pagination .active {
  background: #f87726;
  border-color: #f87726;
  color: #fff;
  pointer-events: none;
}

.gallery-pagination .dots {
  border: none;
  background: none;
  width: auto;
  height: auto;
  padding: 0 5px;
  font-size: 20px;
  color: #777;
}

/* Mobile */

@media (max-width: 768px) {
  .gallery-pagination {
    gap: 5px;
    margin-top: 20px;
  }

  .gallery-pagination a,
  .gallery-pagination span {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }

  .gallery-pagination .page-btn {
    padding: 0 15px;
  }
}

/*==========================
Video Gallery
==========================*/

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

.video_card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
}

.video_card:hover {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.video_card iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  display: block;
  height: 223px;
}

.video_content {
  padding: 15px;
}

.video_content h4 {
  margin: 0;
  font-size: 17px;
  line-height: 1.2;
  color: #222;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  text-align: center;
}

/* Tablet */

@media (max-width: 991px) {
  .video_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */

@media (max-width: 767px) {
  .video_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/*==============================
Activity Section
==============================*/

.activity_section {
  background: #f8f6f2;
}

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

.activity_card {
  position: relative;
  background: #fff;
  border: 1px solid #ddd;
  border-left: 6px solid #f87726;
  padding: 40px;
  transition: 0.35s;
  overflow: hidden;
}

.activity_card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: #f87726;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s;
}

.activity_card:hover::before {
  transform: scaleX(1);
}

.activity_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.activity_number {
  position: absolute;
  right: 25px;
  top: 15px;
  font-family: "Urbanist", sans-serif;
  font-size: 90px;
  font-weight: 800;
  line-height: 1;
  color: #f87726;
  opacity: 0.06;
  user-select: none;
}

.activity_card h3 {
  font-family: "Urbanist", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.35;
  color: #1d1d1d;
  margin-bottom: 25px;
  padding-right: 90px;
  position: relative;
}

.activity_card h3::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #f87726;
  margin-top: 14px;
}

.activity_card p {
  font-family: "Merriweather", serif;
  font-size: 16px;
  line-height: 2;
  color: #555;
  text-align: justify;
  margin-bottom: 18px;
}

.activity_card p:last-child {
  margin-bottom: 0;
}

/*==============================
Responsive
==============================*/

@media (max-width: 991px) {
  .activity_grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .activity_card {
    padding: 25px;
  }

  .activity_card h3 {
    font-size: 23px;
    padding-right: 60px;
  }

  .activity_card p {
    font-size: 15px;
    line-height: 1.9;
  }

  .activity_number {
    font-size: 60px;
  }
}

.status_content h4 {
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  color: #1f3552;
  line-height: 1.2;
  font-size: 20px;
}

.logo-text p {
  margin-bottom: 3px;
  background: var(--primary2);
  color: #fff;
  line-height: 1.2;
  padding: 5px 15px 6px;
  font-family: "Merriweather", serif;
  font-size: 16px;
  text-align: center;
  border-radius: 5px;
}

.swamiji-profile-card {
  margin: auto;
  background: #fff;
  padding: 40px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}
.status_box{
position: relative;
}
.status_box .all_image_btn{
position: absolute;
  bottom: 25px;
  right: 25px;
  background: #b62603;
  border-radius: 31px;
}
.gap_40{
   padding-bottom:45px; 
}
.swamiji-profile-card:before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 5px;

  height: 100%;

  background: #f87726;
}

.swamiji-profile-card h2 {
  font-size: 30px;

  color: #1f3552;

  margin-bottom: 15px;

  font-family: "Urbanist", sans-serif;

  font-weight: 700;

  line-height: 1.2;
}

.address-box {
  display: flex;

  align-items: flex-start;

  gap: 10px;

  padding: 12px 20px;

  margin-bottom: 15px;

  font-size: 16px;

  line-height: 1.4;

  color: #444;

  font-family: "Merriweather", serif;
  border: 1px solid #e1e1e1;
  border-radius: 0 30px 30px 0;
}

.address-box i {
  font-size: 24px;

  color: #f87726;

  \=: 4px;
}

.profile-description p {
  color: #555;
  text-align: justify;

  margin-bottom: 0px;

  font-family: "Merriweather", serif;
  font-size: 15px;
  line-height: 1.4;
}
.all_image_btn {
  background: var(--primary);
  color: #fff;
  padding: 5px 20px;
  border-radius: 0 50px 50px 0;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  display: block;
  margin-top: 20px;
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  width: fit-content;
}
.all_image_btn:hover {
  transition: 0.3s;
  background: var(--primary2);
}
.quote-box:before {
  content: "❝";

  position: absolute;

  left: 25px;

  top: 10px;

  font-size: 70px;

  color: rgba(255, 255, 255, 0.2);
}

.quote-box:after {
  content: "❞";

  position: absolute;

  right: 25px;

  bottom: -20px;

  font-size: 70px;

  color: rgba(255, 255, 255, 0.2);
}
.new_banner .ashram-info-inner.cus_mb_5 {
  position: relative;
  margin-bottom: 10px;
  background: #fff;
}
.new_banner.page-banner {
  padding: 70px 0;
}
.new_banner .page-banner-content {
  background: #b62603;
  padding: 10px;
}
.new_banner .page-banner-content .breadcrumb-list li a {
  color: #fff;
}
.new_banner .breadcrumb-list li:not(:last-child)::after {
  color: #fff;
}

@media (max-width: 991px) {
  .swamiji-profile-card {
    padding: 15px 15px;
  }
  .swamiji-profile-card::before {
    display: none;
  }
  .swamiji-profile-card h2 {
    font-size: 22px;
  }
  .gap_40 {
  padding-bottom: 28px;
}
.status_box .all_image_btn {
  bottom: 12px;
  right: 12px;
}
  .quote-box {
    font-size: 24px;

    padding: 25px;
  }
}

@media (max-width: 576px) {
  .address-box {
    flex-direction: column;
  }

  .profile-description p {
    font-size: 14px;
    line-height: 1.5;
  }
}

.school-card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  overflow: hidden;
  transition: 0.45s;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
  height: 100%;
  border: 1px solid rgba(248, 119, 38, 0.08);
}
.school-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #f87726;
}

.school-icon {
  width: 100%;

  height: 150px;


  margin: auto;

  background: #f8f4ea;

  display: flex;

  justify-content: center;

  align-items: center;

  margin-bottom: 30px;
}

.school-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.school-card h3 {
  font-size: 18px;

  line-height: 1.2;

  color: #1f3552;

  font-family: "Urbanist", sans-serif;

  margin-bottom: 25px;

  font-weight: 700;
}

.school-card h3 span {
  display: block;

  color: #f87726;

  font-size: 14px;

  margin-top: 8px;

  font-family: "Merriweather", serif;
}

.school-btn {
  display: inline-block;

  padding: 7px 30px;

  background: #f87726;

  color: #fff;

  text-decoration: none;

  border-radius: 40px;

  transition: 0.35s;

  font-weight: 600;

  font-family: "Urbanist", sans-serif;
  line-height: 1.2;
  font-size: 14px;
}

.school-btn:hover {
  background: #b62603;

  color: #fff;
}
.footer-widget .logo-link {
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-bottom: 25px;
}
.footer-widget .logo-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
}
.footer-widget .logo-text span {
  color: #fff;
}
.cus_left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 25px;
}  
.pdf_title.cus_left{
display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: flex-start;
  border: 1px solid #00000017;
  padding: 17px;
  border-left: 3px solid #b62603;
}
.pdf_title.cus_left h5 {
  font-size: 22px;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
}



@media (max-width: 991px) {
  .school-card {
    padding: 35px 25px;
  }
  .footer-widget .foot_txt {
    -webkit-line-clamp: 20;
  }

  .bg_white {
    background-color: #fff;
    background-image: none;
  }
  .footer-widget .foot_txt {
    font-size: 14px;
  }
  .footer-widget .logo-link {
    margin-bottom: 15px;
  }
  .footer-widget .logo-text h2 {
    font-size: 25px;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .logo-text p {
    margin-bottom: 5px;
    line-height: 1.2;
    padding: 3px 8px 4px;
    font-size: 11px;
    border-radius: 2px;
  }
}

@media (max-width: 600px) {
  .hero-slide img {
    height: 300px;
  }
  .cus_pr {
    padding-right: 0px;
  }
  .gallery-item img {
    height: 150px;
  }
  .footer-logo {
    width: 65px;
    margin-bottom: 12px;
  }
  .school-icon {
    /*! width: 80px; */
    /*! height: 80px; */
    margin-bottom: 20px;
  }
  .school-icon img {
    /*! width: 45px; */
  }
  .all_image_btn {
    padding: 3px 15px;
  }
  .all_image_btn {
    margin-top: 12px;
  }
  .intro_data ul li,
  .intro_data ol li {
    font-size: 14px;
    line-height: 1.5;
  }
  .objective_box p {
    font-size: 14px;
    line-height: 1.5;
  }
  .objective_grid {
    gap: 15px;
    border: 1px solid #54545436;
  }
  .levels_wrapper {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
  }
  .level_icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .status_grid {
    gap: 17px;
  }
  .address-box {
    font-size: 14px;
    line-height: 1.5;
  }
  .address-box {
    gap: 7px;
    padding: 12px 12px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 5px;
  }
  .intro_data table th,
  .intro_data table td {
    padding: 6px;
    font-size: 13px;
    line-height: 1.4;
  }
  .intro_data table {
    margin: 15px 0;
  }
  .both p {
    font-size: 14px;
    line-height: 1.5;
  }
  .status_content h4 {
    line-height: 1.2;
    font-size: 16px;
  }
  .status_content p {
    line-height: 1.5;
    font-size: 13px;
  }
  .news_grid {
    grid-template-columns: 1fr;
  }
  .ashram-action {
    min-width: 100%;
  }
  .pdf_title.cus_left h5 {
  font-size: 19px;
}
.pdf_title.cus_left{
    padding:13px;
}


}






.normal_btn.donate-btn{
padding: 8px 12px;
  border-radius: 3px;
  font-size: 14px;
  border: 1px solid #000;
  line-height: 1.2;
  text-align: center;
  background: #fff;
  color: #b62603;
}


@media (max-width: 500px) {
  .hero-slide img {
    height: 270px;
  }
  
}

