.contact-widget p {
  color: #222;
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.contact-widget .contact-link {
  color: #222;
  text-decoration: none;
  margin-top: 1px;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 13px;
  word-break: break-all;
}

.contact-widget .contact-link:hover {
  color: #be1e2d;
  text-decoration: underline;
}

/* General Section Styling */
.activity-details-section {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #f9f9f9;
  padding-bottom: 60px;
}

/* -----------------------------------------
   1. Banner Styling
   ----------------------------------------- */
.details-banner {
  background: linear-gradient(135deg, #d9531e, #be1e2d);
  color: #ffffff;
  padding: 125px 20px 70px 20px;
  text-align: center;
}

.details-banner h1 {
  font-size: 40px;
  margin: 0 0 15px 0;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Soft shadow for readability */
}

.details-banner p {
  font-size: 18px;
  margin: 0;
  opacity: 0.95;
}

/* -----------------------------------------
   2. Stylish Floating Breadcrumb
   ----------------------------------------- */
.breadcrumb-wrapper {
  max-width: 1200px;
  margin: -30px auto 40px auto; /* Pulls breadcrumb up over the banner */
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.stylish-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background: #ffffff;
  margin: 0;
  padding: 15px 30px;
  border-radius: 50px; /* Pill shape */
  box-shadow: 0 8px 25px rgba(217, 83, 30, 0.15); /* Orange glow shadow */
  list-style: none;
  border-bottom: 3px solid #d9531e;
  border-top: 1px solid #f0f0f0;
}

.stylish-breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: #222;
}

.stylish-breadcrumb li:not(:last-child)::after {
  content: "›";
  padding: 0 15px;
  color: #222;
  font-size: 20px;
  line-height: 1;
}

.stylish-breadcrumb a {
  color: #222;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.stylish-breadcrumb a:hover {
  color: #d9531e;
}

.stylish-breadcrumb a svg {
  transition:
    stroke 0.3s ease,
    transform 0.3s ease;
}

.stylish-breadcrumb a:hover svg {
  stroke: #d9531e;
  transform: translateY(-2px);
}

.stylish-breadcrumb .active {
  color: #be1e2d;
  font-weight: 700;
  background: rgba(190, 30, 45, 0.05); /* Light red background to highlight */
  padding: 5px 15px;
  border-radius: 20px;
}

/* -----------------------------------------
   3. Main Content Container & Layout
   ----------------------------------------- */
.details-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  padding: 0 20px;
}

/* Left Side (Main Info) */
.details-content {
  flex: 2; /* Takes 66% width */
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.details-main-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.details-content h2 {
  color: #000;
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
}

.details-content p {
  color: #222;
  text-align: justify;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* Custom List (Red Checkmarks) */
.details-list {
  list-style: none;
  padding: 0;
}

.details-list li {
  color: #000;
  font-size: 16px;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

.details-list li::before {
  content: "✔";
  color: #be1e2d;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

/* -----------------------------------------
   4. Sidebar & Widgets
   ----------------------------------------- */
.details-sidebar {
  flex: 1; /* Takes 33% width */
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #d9531e; /* Top highlight border */
}

.sidebar-widget h3 {
  margin-top: 0;
  color: #222;
  font-size: 22px;
  margin-bottom: 15px;
}

.sidebar-widget p {
  color: #222;
  text-align: justify;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Donate Button */
.donate-btn {
  display: block;
  text-align: center;
  background-color: #be1e2d;
  color: #ffffff;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.donate-btn:hover {
  color: #ffffff;

  transform: translateY(-3px);
}

.gallery-image-container {
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Image Stretch Fix */
.g-image {
  width: 100% !important;
  height: 360px !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block;
  transition: transform 0.5s ease;
}

/* Professional Hover Effect */
.gallery-image-container:hover .g-image {
  transform: scale(1.1);
}
.donate-now-1-area {
  padding: 40px 0;
  background-color: #f8f9fa;
}
.donate-now-1-subtitle {
  color: #bc221d;
  font-weight: 600;
}
.donate-now-1-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}

.donate-now-1-content {
  flex: 1;
  min-width: 300px;
}

.donate-now-1-title {
  font-size: 36px;
  font-weight: 800;
  color: #000;
  margin: 15px 0 25px;
}

.donate-now-1-benefit {
  margin-top: 30px;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  border-left: 6px solid #bc221d;
  display: flex;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.donate-now-1-benefit i {
  font-size: 24px;
  color: #bc221d;
}

/* Form Styling */
.donate-now-1-form-card {
  flex: 1.5;
  background: #ffffff;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}
.donate-now-1-text {
  font-size: 17.5px;
  text-align: justify;
}
.donate-now-1-benefit span {
  font-size: 17.5px;
  text-align: justify;
}
.donate-now-1-amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 15px 0;
}

.donate-now-1-amt-btn {
  padding: 8px;
  border: 2px solid #ddd;
  background: transparent;
  font-weight: 600;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.donate-now-1-amt-btn.active,
.donate-now-1-amt-btn:hover {
  background: #bc221d;
  color: #fff;
  border-color: #bc221d;
}

.donate-now-1-input-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.donate-now-1-input {
  width: 100%;
  color: #000;
  font-weight: 500;
  padding: 10px 18px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  margin-bottom: 15px;
  transition: all 0.3s;
}

.donate-now-1-input:focus {
  border-color: #bc221d;
  outline: none;
  box-shadow: 0 0 8px rgba(188, 34, 29, 0.1);
}

.donate-now-1-input.textarea {
  height: 80px;
  resize: none;
}

.donate-now-1-submit-btn {
  width: 40%;
  padding: 13px;
  background: #bc221d;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: 0.4s;
}

.donate-now-1-submit-btn:hover {
  transform: translateY(-3px);
}

.what-we-do-section-1-explainer {
  padding: 40px 0 10px;
  background-color: #fff;
}

.what-we-do-section-1-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

/* Image to Right toggle */
.what-we-do-section-1-row.reverse {
  flex-direction: row-reverse;
}

.what-we-do-section-1-img-col {
  flex: 1;
}

.what-we-do-section-1-img-col img {
  width: 100%;
  height: 300px;
  border-radius: 30px;
  box-shadow: 25px 25px 0px #f4f4f4; /* Creative Offset Shadow */
}

.what-we-do-section-1-text-col {
  flex: 1;
}

.what-we-do-section-1-tag {
  color: #bc221d;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 10px;
}

.what-we-do-section-1-heading {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 25px;
}

.what-we-do-section-1-description {
  font-size: 17.5px;
  line-height: 1.8;
  color: #222;
  text-align: justify;
  margin-bottom: 25px;
}

.what-we-do-section-1-list {
  list-style: none;
  padding: 0;
}

.what-we-do-section-1-list li {
  font-size: 16px;
  color: #333;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.what-we-do-section-1-list i {
  color: #bc221d !important;
  font-size: 18px;
}

.vision-mission-value-ssj-area {
  padding: 40px 0;
  background-color: #f9f9f9;
}

.vision-mission-value-ssj-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.vision-mission-value-ssj-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 40px; /* High rounding as per your image */
  text-align: center;
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: transform 0.3s ease;
  border-bottom: 5px solid transparent;
}

.vision-mission-value-ssj-card:hover {
  transform: translateY(-10px);
}

/* Icons Styling */
.vision-mission-value-ssj-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.vision-mission-value-ssj-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: 1px;
  color: #000;
}

.vision-mission-value-ssj-card p {
  color: #000;
  text-align: justify;
  line-height: 1.7;
  font-size: 16px;
}

/* Custom Colors for each box (matching your image) */
.mission-box {
  border-top: 8px solid #ff4500;
} /* Orange/Red */
.mission-box .vision-mission-value-ssj-icon {
  color: #ff4500;
}

.vision-box {
  border-top: 8px solid #00ced1;
} /* Cyan/Teal */
.vision-box .vision-mission-value-ssj-icon {
  color: #00ced1;
}

.values-box {
  border-top: 8px solid #ffd700;
} /* Yellow/Gold */
.values-box .vision-mission-value-ssj-icon {
  color: #ffd700;
}

.our-patron-shiv-shakti-area {
  padding: 40px 0;
  background-color: #fff;
  overflow: hidden;
}

.our-patron-shiv-shakti-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

/* Image Column Styling */
.our-patron-shiv-shakti-image-col {
  flex: 1;
  min-width: 350px;
}

.our-patron-shiv-shakti-img-wrapper {
  position: relative;
  z-index: 1;
}

.our-patron-shiv-shakti-img-wrapper img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 10px solid #f8f9fa;
}

.our-patron-shiv-shakti-experience {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: #bc221d;
  color: #fff;
  padding: 10px 25px;
  font-weight: 500;
  font-size: 16px;
  border-radius: 5px;
  box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}

/* Content Column Styling */
.our-patron-shiv-shakti-content-col {
  flex: 1.5;
  min-width: 350px;
}

.our-patron-shiv-shakti-tagline {
  color: #bc221d;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 10px;
}

.our-patron-shiv-shakti-name {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.our-patron-shiv-shakti-designation {
  font-size: 20px;
  color: #333;
  margin-bottom: 25px;
  font-style: italic;
}

.our-patron-shiv-shakti-desc {
  font-size: 17.5px;
  line-height: 1.8;
  color: #000;
  text-align: justify;
  margin-bottom: 15px;
}

.our-patron-shiv-shakti-quote {
  margin-top: 30px;
  padding: 20px;
  background: #fdf2e9;
  border-left: 5px solid #bc221d;
  border-radius: 0 10px 10px 0;
}

.our-patron-shiv-shakti-quote p {
  font-style: italic;
  font-weight: 600;
  color: #333;
  font-size: 17px;
  margin: 0;
}

/* Breadcrumb Main Area */
.breadcrumb-sections-ssj-area {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img1/1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect ke liye */
  padding: 150px 0;
  position: relative;
  color: #ffffff;
  margin-top: 87px;
}

/* Title Styling */
.breadcrumb-sections-ssj-content .breadcrumb-sections-ssj-title {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
}

/* Breadcrumb Links (UL) */
.breadcrumb-sections-ssj-links {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 18px;
}

/* Individual Links */
.breadcrumb-sections-ssj-links li a {
  color: #ff6600; /* Aapki NGO ka theme color */
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.breadcrumb-sections-ssj-links li a:hover {
  color: #ffffff;
  text-shadow: 0px 0px 8px rgba(255, 102, 0, 0.8);
}

/* Separator (/) */
.breadcrumb-sections-ssj-links li::after {
  content: "\f105"; /* Font Awesome Chevron icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 15px;
  color: #eeeeee;
  font-size: 14px;
}

.breadcrumb-sections-ssj-links li.active::after {
  content: ""; /* Last item ke baad icon nahi dikhega */
}

/* Active Page Text */
.breadcrumb-sections-ssj-links li.active {
  color: #ffffff;
  font-weight: 400;
  opacity: 0.9;
}

.shivshakti-b {
  color: #bc2320;
}
.about7-section-area .about7-header-area span {
  color: #bc221d; /* Trust Maroon */
  background: rgba(188, 34, 29, 0.1);
  padding: 10px 20px 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 10px;
}
.about7-section-area .about7-header-area p {
  color: var(--Paragraph-Color, #131313);
}
.about7-section-area .about7-header-area h2 {
  color: #0d0d0d;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
}
.about7-section-area .about7-header-area .welcome6-btn::before {
  background: #0a0a0a;
}
.about7-section-area .about7-header-area .welcome6-btn::after {
  background: #0a0a0a;
}
a.welcome6-btn {
  background: var(--Main-Color, #bc2320);
}
.custom-logo {
  width: 225px !important;
}
.header .header-area.homepage7 .main-menu-ex.homepage6 ul li a:hover {
  color: #bc221d !important;
}
.header
  .header-area.homepage7
  .main-menu-ex.homepage6
  ul
  li
  ul
  li
  a:hover::after {
  background: #bc221d !important;
}
.header .header-area.homepage7 .main-menu-ex.homepage6 ul li:hover > a {
  color: #bc221d !important;
}
.custom-btn {
  background: #bc221d !important;
  border: 1px solid #bc221d !important;
}
.custom-btn:hover {
  background: #bc140f !important;
  border: 1px solid #bc140f !important;
}
.header .header-area.homepage7 .main-menu-ex.homepage6 ul li a {
  color: #000 !important;
  font-weight: 500;
}
.header .header-area.homepage7 .main-menu-ex.homepage6 ul li ul li a {
  color: #000 !important;
}
/* Main Slider */
.shivshakti-slider {
  margin-top: 100px;

  position: relative;
  width: 100%;
  height: 500px;
  min-height: 500px;
  overflow: hidden;
}

.shivshakti-slider__swiper {
  width: 100%;
  height: 100%;
}

/* Slides */
.shivshakti-slider__slide {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background */
.shivshakti-slider__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  /* filter: brightness(0.1); */
}

/* Overlay - Direct Colors */
.shivshakti-slider__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    #0f0f0f 0%,
    rgba(0, 0, 0, 0.7) 50%,
    #0f0f0f 100%
  );
  opacity: 0.85;
  z-index: 1;
}

/* Content */
.shivshakti-slider__content {
  margin-top: 150px !important;
  position: relative;
  z-index: 2;
  max-width: auto;
  padding: 0 5%;
  text-align: center;
  color: #ffffff;
  animation: fadeInUp 1s ease-out;
}

/* Tag Badge */
.shivshakti-slider__tag {
  display: inline-block;
  background: #e3793e;
  color: #000000;
  padding: 8px 25px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(227, 121, 62, 0.4);
}

.shivshakti-slider__content h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.shivshakti-slider__content p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  /* opacity: 0.95; */
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

/* CTA Buttons */
.shivshakti-slider__cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.shivshakti-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 40px;
  border-radius: 50px;
  border: transparent;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Maroon Button */
.shivshakti-btn--maroon {
  background: #bc221d;
  color: #ffffff;
}

.shivshakti-btn--maroon:hover {
  background: #a31d19;
  color: #ffffff !important;

  transform: translateY(-5px);
}

/* Orange Button */
.shivshakti-btn--orange {
  background: #e3793e;
  color: #000000;
  box-shadow: 0 10px 30px rgba(227, 121, 62, 0.4);
}

.shivshakti-btn--orange:hover {
  background: #d16b36;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(227, 121, 62, 0.6);
}

/* Outline Button */
.shivshakti-btn--outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.shivshakti-btn--outline:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-5px);
}

/* Navigation Arrows */
.shivshakti-slider__nav-prev,
.shivshakti-slider__nav-next {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 50px !important;
  height: 50px !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  z-index: 10 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  backdrop-filter: blur(10px) !important;
  margin-top: 16px !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
}
/* Arrow Icon Size Control */
.shivshakti-slider__nav-prev::after,
.shivshakti-slider__nav-next::after {
  font-size: 18px !important;
  font-weight: bold !important;
}
.shivshakti-slider__nav-prev {
  left: 40px;
}
.shivshakti-slider__nav-next {
  right: 40px;
}

.shivshakti-slider__nav-prev:hover,
.shivshakti-slider__nav-next:hover {
  background: #bc140f;
  border-color: #bc140f;
  transform: translateY(-50%) scale(1.1);
}

/* Pagination */
.shivshakti-slider__pagination {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.shivshakti-slider__pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0.7;
  margin: 0 10px;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.shivshakti-slider__pagination .swiper-pagination-bullet-active {
  background: #bc140f;
  opacity: 1;
  transform: scale(1.3);
}

.shivshakti-slider__nav-prev,
.shivshakti-slider__nav-next {
  width: 55px;
  height: 55px;
  font-size: 1.2rem;
}
.shivshakti-btn {
  padding: 5px 40px;
  font-size: 0.9rem;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.activtives-shivshakti-section {
  padding: 50px 20px;
  background: radial-gradient(
    circle at top right,
    #2c3e50,
    #000000
  ); /* Deep premium gradient */
  overflow: hidden;
}

.activtives-shivshakti-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.activtives-shivshakti-box {
  padding: 30px;
  border-radius: 15px;
  color: white;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.activtives-shivshakti-box:hover {
  transform: translateY(-5px);
}

.activtives-shivshakti-icon {
  font-size: 40px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.activtives-shivshakti-box h3 {
  margin: 0 0 15px 0;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: bold;
}

.activtives-shivshakti-box p {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0px;
  text-align: justify;
  margin-bottom: 25px;
  opacity: 0.9;
}

/* Button ko center karne ke liye container */
.activtives-shivshakti-footer-container {
  display: flex;
  justify-content: center; /* Horizontal Center */
  align-items: center; /* Vertical Center */
  width: 100%;
  padding: 40px 0 2px;
}

/* Main Button Styling */
.activtives-shivshakti-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px; /* Text aur icon ke beech ka gap */
  padding: 12px 35px;
  background: #bc221d; /* Aapke trust ka Maroon color */
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px; /* Rounded pill shape */
  text-transform: capitalize;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

/* Icon Styling */
.activtives-shivshakti-view-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

/* Hover Effects */
.activtives-shivshakti-view-btn:hover {
  transform: translateY(-5px); /* Halka sa upar uthega */
  color: #ffffff;
}

/* Hover karne par Arrow slide hoga */
.activtives-shivshakti-view-btn:hover i {
  transform: translateX(8px);
}

/* Click karne par halka sa press effect */
.activtives-shivshakti-view-btn:active {
  transform: translateY(-2px) scale(0.98);
}
/* UI Colors Matching Your Sample Image */
.activtives-shivshakti-blue {
  background: rgba(255, 255, 255, 0.9); /* Pure White for contrast */
  color: #333 !important;
  border: 1px solid #d1e9f6;
}
.activtives-shivshakti-darkblue {
  background: linear-gradient(135deg, #0077b6 0%, #023e8a 100%);
  color: #fff;
}
.activtives-shivshakti-red {
  background: linear-gradient(
    135deg,
    #bc221d 0%,
    #660000 100%
  ); /* Brand Maroon */
  color: #fff;
} /* Dark Theme */
.activtives-shivshakti-orange {
  background: linear-gradient(135deg, #fb8500 0%, #ffb703 100%);
  color: #fff;
}
.activtives-shivshakti-green {
  background: linear-gradient(135deg, #2d6a4f 0%, #52b788 100%);
  color: #fff;
}
.activtives-shivshakti-cyan {
  background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
  color: #fff;
}
/* Glow Effect on Hover */
.activtives-shivshakti-box:hover {
  box-shadow: 0 15px 35px rgba(227, 121, 62, 0.2); /* Soft Orange Glow */
  border-color: #e3793e;
}
/* Top Content Container */
.activtives-shivshakti-top-content {
  display: flex;
  flex-direction: column;
  align-items: center; /* Horizontal Center */
  justify-content: center; /* Vertical Center */
  text-align: center;
  margin-bottom: 70px;
  width: 100%;
}

/* Badge Wrapper to ensure it's centered */
.activtives-shivshakti-badge-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 15px;
}

.activtives-shivshakti-badge {
  background: rgba(188, 34, 29, 0.1);
  color: #fafafa;
  padding: 6px 20px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(188, 34, 29, 0.3);
}

/* Main Heading - perfectly centered */
.activtives-shivshakti-main-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 auto 15px auto;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

/* Centered Animated Line */
.activtives-shivshakti-heading-line {
  width: 70px;
  height: 4px;
  background: linear-gradient(
    to right,
    #bc221d,
    #e3793e
  ); /* Trust Brand Colors */
  margin: 0 auto 20px auto; /* Margin auto centers it */
  border-radius: 2px;
}

/* Centered Sub-heading with high letter spacing */
.activtives-shivshakti-sub-heading {
  font-size: 1.1rem;
  color: #e3793e; /* Orange for professional contrast */
  letter-spacing: 2px; /* Modern look */
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 auto;
}
/* Box Text Shadow for better readability */
.activtives-shivshakti-box h3 {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* Read More Links inside boxes */
.activtives-shivshakti-link {
  background: #fff;
  color: #000;
  border: 1px solid #eee;
  transition: 0.3s;
}

.activtives-shivshakti-link:hover {
  background: #000;
  color: #fff;
}

/* Light box text correction */
.activtives-shivshakti-blue h3,
.activtives-shivshakti-blue p {
  color: #333;
}

.activtives-shivshakti-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #333;
  padding: 5px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: bold;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.activtives-shivshakti-link i {
  font-size: 14px;
}

.our-owner-shivshakti-section {
  padding: 50px 5%;
  background-color: #ffffff; /* Clean professional white background */
  overflow: hidden;
}

.our-owner-shivshakti-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}

/* Image Column Styles */
.our-owner-shivshakti-image-col {
  flex: 1;
  min-width: 320px;
  position: relative;
}

.our-owner-shivshakti-img-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.our-owner-shivshakti-img-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

/* Decorative element behind image */
.our-owner-shivshakti-img-deco {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100%;
  height: 100%;
  border: 5px solid #bc221d; /* Maroon border deco */
  border-radius: 20px;
  z-index: 1;
}

/* Text Column Styles */
.our-owner-shivshakti-text-col {
  flex: 1.2;
  min-width: 320px;
}

.our-owner-shivshakti-tagline {
  color: #bc221d;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 10px;
}

.our-owner-shivshakti-name {
  font-size: 3rem;
  color: #0a0a0a;
  font-weight: 800;
  margin-bottom: 5px;
}

.our-owner-shivshakti-role {
  font-size: 1.2rem;
  color: #e3793e; /* Orange theme */
  font-weight: 600;
  margin-bottom: 25px;
}

.our-owner-shivshakti-content p {
  font-size: 17.5px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 15px;
  text-align: justify;
}

/* Button Styling */
.our-owner-shivshakti-btn-wrap {
  margin-top: 35px;
}

.our-owner-shivshakti-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 12px 35px;
  background-color: #bc221d;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;

  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.our-owner-shivshakti-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.our-owner-shivshakti-btn i {
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.2);
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.why-choose-us-shivshakti-section {
  padding: 50px 5%;
  background: #dddada;
  font-family: "Poppins", sans-serif;
}

.why-choose-us-shivshakti-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading Styling */
.why-choose-us-shivshakti-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-choose-us-shivshakti-top-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  letter-spacing: 5px;
  margin-bottom: 5px;
}

.why-choose-us-shivshakti-main-title {
  font-size: 36px;
  font-weight: 800;
  color: #333;
}

.why-choose-us-shivshakti-main-title span {
  background: #bc221d;
  color: #fff;
  padding: 2px 15px;
  border-radius: 10px;
}

.why-choose-us-shivshakti-line {
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, #bc221d, #e3793e);
  margin: 15px auto;
}

/* Layout Wrapper */
.why-choose-us-shivshakti-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Side Items */
.why-choose-us-shivshakti-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.why-choose-us-shivshakti-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.why-choose-us-shivshakti-item.reverse {
  text-align: right;
}

/* Icons Styling */
.why-choose-us-shivshakti-icon {
  width: 80px;
  height: 80px;
  background: #e4712a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 20px rgba(226, 180, 74, 0.3);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.why-choose-us-shivshakti-item:hover .why-choose-us-shivshakti-icon {
  transform: scale(1.1) rotate(10deg);
  background: #bc221d; /* Maroon on hover */
}

/* Text Info */
.why-choose-us-shivshakti-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 8px;
}

.why-choose-us-shivshakti-info p {
  font-size: 1rem;
  color: #000;
  text-align: justify;
  line-height: 1.5;
}

/* Center Circle Area */
.why-choose-us-shivshakti-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.why-choose-us-shivshakti-circle-bg {
  width: 300px;
  height: 300px;
  background: #fff;
  border-radius: 50%;
  border: 15px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.05);
}

.why-choose-us-shivshakti-circle-bg img {
  max-width: 80%;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

/* --- Heading Styles --- */
.our-gallery-shivshakti-top-content {
  text-align: center;
  margin-bottom: 60px;
}

.our-gallery-shivshakti-badge {
  color: #bc221d; /* Trust Maroon */
  background: rgba(188, 34, 29, 0.1);
  padding: 6px 20px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 15px;
}

.our-gallery-shivshakti-main-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #000;
  margin-bottom: 15px;
}

.our-gallery-shivshakti-line {
  width: 70px;
  height: 4px;
  background: linear-gradient(to right, #bc221d, #e3793e);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.our-gallery-shivshakti-sub-heading {
  font-size: 1.1rem;
  color: #222;
  max-width: 700px;
  margin: 0 auto;
  letter-spacing: 1px;
  line-height: 1.6;
}

.contact-us-shivshakti-section {
  padding: 50px 5%;
  background-color: #e0e3e2;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
}

.contact-us-shivshakti-container {
  max-width: 1100px;
  width: 100%;
}

.contact-us-shivshakti-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  gap: 0; /* Box overlap effect */
}

/* Left Form Box */
.contact-us-shivshakti-form-box {
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  width: 55%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  z-index: 5;
  position: relative;
}

.contact-us-shivshakti-title {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

.contact-us-shivshakti-subtitle {
  font-size: 0.95rem;
  color: #000;
  margin-bottom: 30px;
}

.contact-us-shivshakti-input-group {
  margin-bottom: 15px;
}

.contact-us-shivshakti-input-group input,
.contact-us-shivshakti-input-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: #f4f7f9;
  border: 1px solid #eee;
  border-radius: 8px;
  font-size: 0.9rem;
  outline: none;
  transition: 0.3s;
}

.contact-us-shivshakti-input-group input:focus,
.contact-us-shivshakti-input-group textarea:focus {
  border-color: #bc221d; /* Trust Maroon Theme */
  background: #fff;
}

.contact-us-shivshakti-submit-btn {
  width: 100%;
  padding: 15px;
  background: #bc221d; /* Soft mint color from your image */
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}

.contact-us-shivshakti-submit-btn:hover {
  background: #bc221d; /* Trust Maroon on hover */
  color: #fff;
}

/* Right Details Box */
.contact-us-shivshakti-details-box {
  background: #0c1720; /* Dark navy background */
  width: 50%;
  height: 400px;
  padding: 50px 50px 50px 100px; /* Extra left padding for overlap */
  border-radius: 20px;
  margin-left: -60px; /* Creating the overlap effect */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.contact-us-shivshakti-graphic {
  position: absolute;
  top: 40px;
  right: 60px;
  width: 100px;
  opacity: 0.8;
}

.contact-us-shivshakti-graphic img {
  width: 100%;
  filter: invert(1);
}

.contact-us-shivshakti-info-list {
  margin-top: 30px;
}

.contact-us-shivshakti-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-us-shivshakti-info-item i {
  color: #a3e4d7; /* Mint icon color */
  margin-top: 5px;
}

.contact-us-shivshakti-info-item span {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #d1d1d1;
}

/* Socials Sidebar inside the dark box */
.contact-us-shivshakti-socials {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #152d3d;
  padding: 15px 10px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-us-shivshakti-socials a {
  color: #fff;
  font-size: 1rem;
  transition: 0.3s;
}

.contact-us-shivshakti-socials a:hover {
  color: #bc221d;
}

.footer-icons-1 {
  list-style: none !important;
  padding: 0 !important;
}

.footer-icons-1 li {
  display: flex !important;
  align-items: center !important;
  margin-bottom: 12px !important;
}

.footer-icons-1 i {
  color: #f1702c !important;
  margin-right: 12px !important;
  font-size: 18px !important;
  width: 20px !important;
  text-align: center !important;
}

.footer-icons-1 a {
  text-decoration: none !important;
  color: #ffffff !important;
  font-size: 14px !important;
  transition: 0.3s !important;
}

.footer-icons-1 a:hover {
  color: #f1702c !important;
}
.footer7-section-area .about-links-area ul li a:hover {
  color: #f1702c !important;
}

.social-icons-1 {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  margin-left: 66px;
}

.social-icons-1 a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 29px;
  background-color: #ff6600;
  color: #fff;
  border-radius: 50%;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons-1 a:hover {
  background-color: #ff6600;
  transform: scale(1.1);
  transition: 0.3s;
}
.footer-icons-1 i,
.social-icons-1 i {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
  font-weight: 900; /* Solid icons ke liye zaroori hai */
}

@media (max-width: 991px) {
  .what-we-do-section-1-row,
  .what-we-do-section-1-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .what-we-do-section-1-img-col img {
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
  }

  .what-we-do-section-1-list li {
    justify-content: center;
  }

  .our-owner-shivshakti-container {
    flex-direction: column;
    text-align: center;
  }
  .our-owner-shivshakti-content p {
    text-align: center;
  }
  .our-owner-shivshakti-img-deco {
    display: none;
  }

  .contact-us-shivshakti-wrapper {
    flex-direction: column;
  }
  .contact-us-shivshakti-form-box,
  .contact-us-shivshakti-details-box {
    width: 100%;
    margin-left: 0;
    height: auto;
    padding: 40px;
  }
  .contact-us-shivshakti-details-box {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: -20px;
  }
  .contact-us-shivshakti-socials {
    position: static;
    flex-direction: row;
    transform: none;
    background: none;
    padding: 0;
    margin-top: 20px;
  }
  .why-choose-us-shivshakti-content-wrapper {
    flex-direction: column;
  }
  .why-choose-us-shivshakti-item.reverse {
    flex-direction: row;
    text-align: left;
  }
  .why-choose-us-shivshakti-center {
    order: -1;
  }

  .our-patron-shiv-shakti-row {
    flex-direction: column;
    text-align: center;
  }
  .our-patron-shiv-shakti-experience {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
  }
  .our-patron-shiv-shakti-quote {
    border-left: none;
    border-top: 5px solid #ff6600;
  }

  .vision-mission-value-ssj-wrapper {
    gap: 20px;
  }

  .details-container {
    flex-direction: column; /* Stack side-by-side layout on smaller screens */
  }
  .details-content,
  .details-sidebar {
    flex: 100%;
  }
}

@media (max-width: 568px) {
  .donate-now-1-text {
    font-size: 16px;
  }
  .donate-now-1-benefit span {
    font-size: 16px;
  }
  .donate-now-1-area {
    padding: 30px 0;
  }
  .donate-now-1-submit-btn {
    width: 100%;
    padding: 10px;
  }
  .donate-now-1-subtitle {
    display: block;
    text-align: center !important;
    width: 100%;
    margin-bottom: 10px;
  }
  .donate-now-1-title {
    font-size: 30px;
    text-align: center;
  }
  .donate-now-1-input-group {
    grid-template-columns: 1fr;
  }
  .donate-now-1-amount-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .donate-now-1-form-card {
    padding: 25px;
  }

  .what-we-do-section-1-img-col img {
    height: auto;
  }
  .what-we-do-section-1-row {
    margin-bottom: 40px;
  }
  .what-we-do-section-1-heading {
    font-size: 28px;
  }

  .what-we-do-section-1-description {
    font-size: 16px;
  }
  .what-we-do-section-1-list li {
    justify-content: left;
  }

  .breadcrumb-sections-ssj-content .breadcrumb-sections-ssj-title {
    font-size: 32px;
  }
  .breadcrumb-sections-ssj-area {
    padding: 40px 0;
  }
  .breadcrumb-sections-ssj-links li.active {
    font-size: 15px;
  }
  .breadcrumb-sections-ssj-links li a {
    font-size: 15px;
  }

  .about7-section-area .about7-header-area p {
    font-size: 16px;
  }
  .contact-us-shivshakti-info-item span {
    line-break: anywhere;
  }
  .social-icons-1 {
    margin-left: 0 !important;
  }
  .contact-us-shivshakti-graphic img {
    width: 100%;
    filter: invert(1);
    margin-left: 38px;
    margin-top: 160px;
  }
  .contact-us-shivshakti-submit-btn {
    width: 100%;
    padding: 10px;
    font-size: 15px;
  }
  .contact-us-shivshakti-section {
    padding: 30px 5%;
  }
  .contact-us-shivshakti-title {
    font-size: 30px;
  }
  .why-choose-us-shivshakti-circle-bg {
    width: 170px;
    height: 170px;
    margin-top: -42px;
  }
  .why-choose-us-shivshakti-info h3 {
    font-size: 1.1rem;
  }
  .why-choose-us-shivshakti-info p {
    font-size: 15px;
  }
  .our-gallery-shivshakti-main-heading {
    font-size: 30px !important;
  }
  .why-choose-us-shivshakti-section {
    padding: 30px 5%;
  }
  .our-gallery-shivshakti-sub-heading {
    font-size: 1rem !important;
  }
  .why-choose-us-shivshakti-icon {
    width: 60px;
    height: 60px;
  }
  .why-choose-us-shivshakti-top-text {
    font-size: 1rem !important;
  }
  .why-choose-us-shivshakti-main-title {
    font-size: 30px !important;
  }
  .shivshakti-slider {
    height: 480px;
    min-height: 450px;
    margin-top: 0;
  }

  .shivshakti-slider__content h1 {
    font-size: 1.9rem;
  }
  .shivshakti-slider__content p {
    font-size: 1rem;
  }
  .shivshakti-slider__cta {
    flex-direction: column;
    align-items: center;
  }

  .our-owner-shivshakti-btn {
    padding: 10px 35px !important;
    font-size: 14px !important;
  }

  .swiper-pagination {
    display: none;
  }

  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    display: none !important;
  }
  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    display: none !important;
  }
  .shivshakti-slider__nav-prev {
    left: 20px;
  }
  .shivshakti-slider__nav-next {
    right: 20px;
  }
  .about7-section-area .about7-header-area h2 {
    font-size: 30px;
  }

  a.welcome6-btn {
    font-size: 14px;
    padding: 15px 24px;
  }
  .activtives-shivshakti-main-heading {
    font-size: 30px !important;
  }
  .activtives-shivshakti-sub-heading {
    font-size: 14px;
  }
  .activtives-shivshakti-box h3 {
    font-size: 1.1rem;
  }
  .activtives-shivshakti-box p {
    font-size: 15px;
  }
  .activtives-shivshakti-view-btn {
    font-size: 14px !important;
    padding: 10px 35px;
  }
  .activtives-shivshakti-section {
    padding: 30px 20px !important;
  }
  .our-owner-shivshakti-section {
    padding: 30px 5% !important;
  }
  .our-owner-shivshakti-name {
    font-size: 30px !important;
  }
  .our-owner-shivshakti-content p {
    font-size: 16px !important;
    text-align: justify !important;
  }

  .our-patron-shiv-shakti-row {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .our-patron-shiv-shakti-image-col,
  .our-patron-shiv-shakti-content-col {
    min-width: 100%; /* Full width le lega mobile par */
    flex: unset;
  }

  .our-patron-shiv-shakti-img-wrapper {
    max-width: 300px; /* Mobile par image zyada badi na ho */
    margin: 0 auto; /* Center alignment */
  }

  .our-patron-shiv-shakti-experience {
    left: 50%; /* Center mein lane ke liye */
    transform: translateX(-50%); /* Bilkul center alignment */
    bottom: -15px; /* Niche shift kiya taaki image par overlap na kare zyada */
    width: max-content;
    font-size: 14px;
    padding: 8px 20px;
  }

  .our-patron-shiv-shakti-name {
    font-size: 30px;
    margin-top: 20px;
  }

  .our-patron-shiv-shakti-designation {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .our-patron-shiv-shakti-desc {
    font-size: 16px; /* Reading comfort ke liye */
    text-align: justify;
    padding: 0 10px;
  }

  .our-patron-shiv-shakti-quote {
    border-left: none;
    border-top: 5px solid #bc221d;
    border-radius: 10px;
    margin-top: 20px;
  }
  .our-patron-shiv-shakti-tagline {
    font-size: 17px;
  }
  .our-patron-shiv-shakti-quote p {
    text-align: justify;
    font-size: 15px;
  }

  .details-banner h1 {
    font-size: 28px;
  }
  .contact-widget .contact-link {
    font-size: 11px;
    margin-top: 4px;
  }
  .activity-details-section {
    padding-bottom: 28px;
  }
  .details-list li {
    text-align: justify;
  }
  .details-banner p {
    font-size: 14px;
  }
  .details-banner {
    padding: 100px 15px 60px 15px;
  }
  .stylish-breadcrumb {
    padding: 12px 20px;
    border-radius: 8px; /* Square edges for mobile instead of pill */
  }
  .stylish-breadcrumb li {
    font-size: 13px;
  }
  .details-content {
    padding: 20px; /* Less padding on mobile */
  }
}
