.ngo-slider-section {
  background: linear-gradient(135deg, #0a1930 0%, #172c54 100%);
  padding: 130px 0 10px;
  overflow: hidden;
  position: relative;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.ngo-slider__swiper {
  width: 100%;
  padding-bottom: 60px !important; /* Space for pagination */
}

/* Slide Container Flexbox */
.ngo-slider__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 0 20px;
}

/* =========================================
   LEFT COLUMN: CONTENT
   ========================================= */
.ngo-slider__content-col {
  flex: 1;
  text-align: left;
}

.ngo-slider__subtitle {
  color: #e85d04; /* Theme Orange */
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

.ngo-slider__title {
  color: #ffffff; /* White text for dark background */
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: 0;
}

.ngo-slider__text {
  color: rgba(255, 255, 255, 0.85); /* Light white/gray text */
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* CTA Buttons */
.ngo-slider__cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.ngo-btn {
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Primary Orange Button */
.ngo-btn--primary {
  background-color: #e85d04;
  color: #ffffff;
  border: 2px solid #e85d04;
  box-shadow: 0 8px 20px rgba(232, 93, 4, 0.4);
}

.ngo-btn--primary:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #e85d04;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Outline White Button for Dark Background */
.ngo-btn--outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.ngo-btn--outline:hover {
  background-color: #ffffff;
  color: #0a1930;
  transform: translateY(-3px);
}

/* =========================================
   RIGHT COLUMN: IMAGE
   ========================================= */
.ngo-slider__image-col {
  flex: 1;
  position: relative;
}

.ngo-slider__image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 8px solid #ffffff; /* White frame stands out on dark blue */
}

/* Decorative element behind image */
.ngo-slider__image-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background-color: #e85d04;
  border-radius: 50%;
  z-index: -1;
}

.ngo-slider__image-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.swiper-slide-active .ngo-slider__image-wrapper img {
  transform: scale(1.05);
}

/* =========================================
   SWIPER NAVIGATION & PAGINATION
   ========================================= */
.ngo-slider__nav-prev,
.ngo-slider__nav-next {
  color: #0a1930 !important;
  background: #ffffff;
  width: 45px !important;
  height: 45px !important;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.ngo-slider__nav-prev:hover,
.ngo-slider__nav-next:hover {
  background: #e85d04;
  color: #ffffff !important;
}

/* Pagination Dots adjusted for dark background */
.ngo-slider__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ffffff; /* White dots */
  opacity: 0.4;
}

.ngo-slider__pagination .swiper-pagination-bullet-active {
  background: #e85d04; /* Orange active dot */
  opacity: 1;
  width: 25px;
  border-radius: 10px;
}

.floating-actions-wrapper {
  position: fixed;
  bottom: 20px; /* Screen के नीचे से दूरी */
  right: 20px; /* Screen के दाएँ से दूरी */
  z-index: 9999;
  display: flex;
  flex-direction: column; /* WhatsApp नीचे, बाकी बटन ऊपर */
  align-items: flex-end; /* सब कुछ Right side अलाइन करने के लिए */
  gap: 15px; /* बटन्स और WhatsApp के बीच का गैप */
}

/* Vertical Wrapper for Registration & Application */
.floating-vertical-btns {
  display: flex;
  flex-direction: column; /* बटन्स को एक के ऊपर एक रखने के लिए */
  align-items: flex-end; /* बटन्स को राइट साइड में चिपका कर रखने के लिए */
  gap: 12px; /* Registration और Application के बीच का गैप */
}

/* =========================================
   1. REGISTRATION BUTTON STYLING
   ========================================= */
.registration-btn {
  background-color: #e85d04; /* Theme Orange */
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 50px; /* Pill Shape */
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(232, 93, 4, 0.4); /* Orange Glow */
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #e85d04;
  transition: all 0.3s ease;
}

.registration-btn:hover {
  background-color: #ffffff;
  color: #e85d04;
  transform: translateY(-4px); /* Hover पर ऊपर उठने का इफ़ेक्ट */
  box-shadow: 0 8px 20px rgba(232, 93, 4, 0.3);
}

/* =========================================
   2. APPLICATION BUTTON STYLING
   ========================================= */
.application-btn {
  background-color: #0a1930; /* Theme Navy Blue */
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 50px; /* Pill Shape */
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(10, 25, 48, 0.4); /* Dark Glow */
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #0a1930;
  transition: all 0.3s ease;
}

.application-btn:hover {
  background-color: #ffffff;
  color: #0a1930;
  transform: translateY(-4px); /* Hover पर ऊपर उठने का इफ़ेक्ट */
  box-shadow: 0 8px 20px rgba(10, 25, 48, 0.3);
}

/* =========================================
   WhatsApp Image Adjustment 
   ========================================= */
.whatsaap-img {
  width: 60px; /* आप अपनी इमेज के हिसाब से साइज़ एडजस्ट कर सकते हैं */
  height: auto;
  transition: transform 0.3s ease;
  margin: 0; /* Removes existing arbitrary margins */
}

.whatsaap a {
  display: block;
}

.whatsaap-img:hover {
  transform: scale(1.1); /* Hover करने पर WhatsApp बड़ा होगा */
}

/* Mobile Responsiveness */

.application-form-section {
  background-color: #f9fbff;
  padding: 40px 20px;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.application-form-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Header */
.application-form-header {
  text-align: center;
  margin-bottom: 40px;
}

.application-form-subtitle {
  color: #e85d04;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
}

.application-form-title {
  color: #000;
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.application-form-header p {
  color: #222;
  font-size: 18px;
  margin: 0;
  font-weight: 500;
}

/* Form Card */
.application-form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 45px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  position: relative;
  border-top: 6px solid #e85d04; /* Orange accent border */
}

/* The Official Letter Box */
.application-form-letter-box {
  background: linear-gradient(
    to right,
    rgba(10, 25, 48, 0.03),
    rgba(10, 25, 48, 0.01)
  );
  border-left: 5px solid #0a1930;
  padding: 30px;
  border-radius: 0 12px 12px 0;
  margin-bottom: 40px;
  position: relative;
}

.application-form-quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px;
  color: rgba(232, 93, 4, 0.1); /* Very light orange quote */
}

.application-form-letter-text {
  color: #222;
  font-size: 16px;
  text-align: justify;
  line-height: 1.8;
  margin: 0 0 15px 0;
  font-style: italic;
  font-weight: 500;
}

.application-form-letter-text:last-child {
  margin-bottom: 0;
}

/* Headings inside form */
.application-form-section-heading {
  color: #000;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 2px dashed #e0e0e0;
}

/* Grid Layout */
.application-form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.application-form-group {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 15px;
  margin-bottom: 25px;
  box-sizing: border-box;
}

/* Labels and Inputs */
.application-form-group label {
  display: block;
  color: #1d1d1d;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

.application-form-input {
  width: 100%;
  padding: 10px 16px;
  font-size: 15px;
  color: #1f1f1f;
  background-color: #f8f9fa;
  border: 1px solid #1e1f1f;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  font-family: inherit;
}

.application-form-input:focus {
  outline: none;
  border-color: #0a1930; /* Navy blue focus */
  box-shadow: 0 0 0 4px rgba(10, 25, 48, 0.1);
  background-color: #ffffff;
}

/* Digital Signature Checkbox */
.application-form-agreement {
  background-color: #fff9f5;
  border: 1px dashed #e85d04;
  border-radius: 8px;
  padding: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.application-form-checkbox-label {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  user-select: none;
}

.application-form-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.application-form-custom-check {
  height: 24px;
  width: 24px;
  background-color: #ffffff;
  border: 2px solid #0a1930;
  border-radius: 4px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.application-form-checkbox-label:hover .application-form-custom-check {
  background-color: #f0f0f0;
}

.application-form-checkbox:checked ~ .application-form-custom-check {
  background-color: #e85d04;
  border-color: #e85d04;
}

.application-form-custom-check:after {
  content: "";
  display: none;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.application-form-checkbox:checked ~ .application-form-custom-check:after {
  display: block;
}

/* Submit Button */
.application-form-submit-wrapper {
  text-align: center;
}

.application-form-btn {
  background-color: #0a1930;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  padding: 13px 45px;
  border: 2px solid #0a1930;
  border-radius: 50px; /* Pill shape */
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.application-form-btn:hover {
  background-color: #e85d04;
  border-color: #e85d04;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(232, 93, 4, 0.25);
}

.nice-select.registration-form-control {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  height: 50px !important;
  line-height: 48px !important;
  font-size: 15px !important;
  float: none;
  width: 100%;
}

.nice-select.registration-form-control .list {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(10, 25, 48, 0.15); /* Theme shadow */
  margin-top: 4px;
}

.nice-select.registration-form-control .option {
  line-height: 40px;
  min-height: 40px;
  font-size: 15px;
  transition: all 0.2s;
}

.nice-select.registration-form-control .option:hover,
.nice-select.registration-form-control .option.focus,
.nice-select.registration-form-control .option.selected.focus {
  background-color: rgba(
    232,
    93,
    4,
    0.1
  ) !important; /* Light Orange on hover */
  color: #e85d04 !important; /* Theme Orange */
}

.nice-select.registration-form-control::after {
  right: 20px;
  width: 7px;
  height: 7px;
  border-bottom: 2px solid #555;
  border-right: 2px solid #555;
}
.registration-form-section {
  background-color: #f4f6f9;
  padding: 30px 20px;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.registration-form-container {
  max-width: 850px;
  margin: 0 auto;
}

/* Header Styling */
.registration-form-header {
  text-align: center;
  margin-bottom: 40px;
}

.registration-form-subtitle {
  color: #e85d04;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}

.registration-form-title {
  color: #000;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.registration-form-header p {
  color: #222;
  font-size: 16px;
  margin: 0;
}

/* Form Card Container */
.registration-form-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-top: 5px solid #0a1930; /* Theme Navy Blue Top Border */
}

/* Section Title inside form */
.registration-form-section-title {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
}

.mt-4 {
  margin-top: 35px;
}

/* Form Grid */
.registration-form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.registration-form-group {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
  margin-bottom: 25px;
  box-sizing: border-box;
}

.registration-form-group.full-width {
  flex: 0 0 100%;
  max-width: 100%;
}

/* Labels and Inputs */
.registration-form-group label {
  display: block;
  color: #222;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 15px;
}

.registration-form-control {
  width: 100%;
  padding: 9px 15px;
  font-size: 15px;
  color: #222;
  background-color: #fcfcfc;
  border: 1px solid #292828;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  font-family: inherit;
}

.registration-form-control:focus {
  outline: none;
  border-color: #e85d04; /* Orange focus */
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.1);
  background-color: #ffffff;
}

/* Consent Letter Box */
.registration-form-consent-box {
  background-color: rgba(10, 25, 48, 0.03);
  border: 1px solid rgba(10, 25, 48, 0.1);
  border-left: 4px solid #0a1930;
  border-radius: 8px;
  padding: 25px;
  margin-top: 40px;
  margin-bottom: 30px;
}

.registration-form-consent-box h4 {
  color: #0a1930;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
}

.registration-form-terms-list {
  padding-left: 20px;
  color: #222;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.registration-form-terms-list li {
  margin-bottom: 8px;
}

/* Custom Checkbox */
.registration-form-checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #0a1930;
  user-select: none;
}

.registration-form-checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.registration-form-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #ffffff;
  border: 2px solid #0a1930;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.registration-form-checkbox-container:hover
  input
  ~ .registration-form-checkmark {
  background-color: #f0f0f0;
}

.registration-form-checkbox-container
  input:checked
  ~ .registration-form-checkmark {
  background-color: #e85d04;
  border-color: #e85d04;
}

.registration-form-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.registration-form-checkbox-container
  input:checked
  ~ .registration-form-checkmark:after {
  display: block;
}

.registration-form-checkbox-container .registration-form-checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Submit Button */
.registration-form-submit-row {
  text-align: center;
}

.registration-form-btn {
  background-color: #e85d04;
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  padding: 12px 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(232, 93, 4, 0.3);
}

.registration-form-btn i {
  margin-left: 8px;
}

.registration-form-btn:hover {
  background-color: #0a1930;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 25, 48, 0.3);
}

.course-section-1-wrapper {
  background-color: #f4f6f9;
  padding: 40px 20px;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.course-section-1-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styling */
.course-section-1-header,
.activites-1-header {
  text-align: center;
  margin-bottom: 50px;
}

.course-section-1-title,
.activites-1-title {
  color: #0a1930;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.course-section-1-title::after,
.activites-1-title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background-color: #e85d04;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.course-section-1-subtitle,
.activites-1-subtitle {
  color: #e85d04; /* Updated color for subtitle to pop out */
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  display: block;
}

/* Grid Layout */
.course-section-1-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

/* Card Styling */
.course-section-1-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid transparent;
}

.course-section-1-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(10, 25, 48, 0.15);
  border-bottom: 4px solid #e85d04;
}

/* Image Box Styling */
.course-section-1-img-box {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.course-section-1-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Zoom Effect on Hover */
.course-section-1-card:hover .course-section-1-img-box img {
  transform: scale(1.1);
}

/* Content Area inside Card */
.course-section-1-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.course-section-1-name {
  color: #0a1930;
  font-size: 22px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
}

.course-section-1-details {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.course-section-1-details li {
  font-size: 15px;
  color: #555555;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #e0e0e0;
  padding-bottom: 5px;
}

.course-section-1-details li strong {
  color: #333333;
}

/* Price Box */
.course-section-1-price {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 4px solid #e85d04;
}

.course-section-1-price span {
  font-size: 14px;
  color: #222;
  font-weight: 600;
}

.course-section-1-price strong {
  font-size: 22px;
  color: #000;
}

.course-section-1-btn {
  display: block;
  text-align: center;
  background-color: #e85d04; /* Theme Orange */
  color: #ffffff;
  padding: 12px 20px;
  margin-top: 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid #e85d04;
}

.course-section-1-btn:hover {
  background-color: #0a1930; /* Theme Navy Blue */
  color: #ffffff;
  border-color: #0a1930;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(10, 25, 48, 0.2);
}

/* Special Highlighting for Fashion Design */
.course-section-1-card.highlight-card .course-section-1-img-box::before {
  content: "Premium Course";
  position: absolute;
  top: 15px;
  right: 15px;
  background: #e85d04;
  color: #fff;
  font-size: 12px;
  padding: 6px 15px;
  border-radius: 20px;
  font-weight: bold;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(232, 93, 4, 0.4);
}

/* Special Note Box (Placement & Certificate) */
.course-section-1-note-box {
  background: linear-gradient(135deg, #0a1930, #172c54);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 15px 30px rgba(10, 25, 48, 0.2);
  position: relative;
  overflow: hidden;
}

.course-section-1-note-box::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(232, 93, 4, 0.15);
  border-radius: 50%;
  top: -50px;
  right: -50px;
}

.course-section-1-note-icon {
  color: #e85d04;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 50%;
  flex-shrink: 0;
}

.course-section-1-note-content {
  color: #ffffff;
  z-index: 2;
}

.course-section-1-note-content h4 {
  color: #e85d04;
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 12px;
}

.course-section-1-note-content p {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
  margin: 0;
  opacity: 0.9;
}

.course-section-1-note-content strong {
  color: #ffffff;
  font-weight: 500;
}

.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;
  }
}

@media (max-width: 768px) {
  .application-form-group {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .application-form-card {
    padding: 30px 20px;
  }
  .application-form-letter-box {
    padding: 20px;
  }

  .registration-form-group {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .registration-form-card {
    padding: 25px 20px;
  }

  .course-section-1-title,
  .activites-1-title {
    font-size: 28px;
  }
  .course-section-1-note-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
}

@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%;
    transform: translateX(-50%);
    bottom: -15px;
    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;
  }
  .registration-form-title {
    font-size: 25px;
  }
  .registration-form-header p {
    font-size: 14px;
  }
  .registration-form-section-title {
    font-size: 17px;
  }
  .registration-form-group label {
    font-size: 14px;
  }
  .registration-form-terms-list {
    text-align: justify;
  }
  .registration-form-btn {
    font-size: 15px;
  }
  .application-form-title {
    font-size: 25px;
  }
  .application-form-header p {
    font-size: 14px;
  }
  .application-form-section {
    padding: 30px 20px;
  }
  .application-form-subtitle {
    font-size: 15px;
  }
  .application-form-checkbox-label {
    text-align: justify;
  }
  .application-form-btn {
    font-size: 14px;
    padding: 9px 45px;
  }
  .course-section-1-wrapper {
    padding: 10px 20px;
  }
  .course-section-1-btn {
    padding: 9px 20px;
    font-size: 16px;
  }
  .course-section-1-name {
    font-size: 20px;
  }
  .course-section-1-price strong {
    font-size: 18px;
  }

  .floating-actions-wrapper {
    bottom: 15px;
    right: 15px;
  }
  .registration-btn,
  .application-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  .whatsaap-img {
    width: 50px;
  }

  .ngo-slider__container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px;
  }

  .ngo-slider__content-col {
    text-align: center;
  }

  .ngo-slider__title {
    font-size: 28px;
  }

  .ngo-slider__cta {
    justify-content: center;
  }

  .ngo-slider__image-wrapper img {
    height: 250px;
  }
  .ngo-slider__text {
    text-align: justify;
    font-size: 14px;
  }
}
