.certificate-section {
  padding: 40px 20px;
  background-color: #f8f9fa;
  font-family: "Poppins", sans-serif;
}

.certificate-section-container {
  max-width: 1100px; 
  margin: 0 auto;
}

/* Header Adjustments */
.certificate-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.certificate-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #141c4a;
}

/* Grid logic for 2 per row */
.certificate-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Sirf 2 column banaye hain */
  gap: 30px; /* Space badha di taki clean dikhe */
}

.certificate-section-box {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  height: 480px; /* Height badhai taki certificate lamba aur saaf dikhe */
  border: 1px solid #eee;
}

.certificate-section-img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Isse certificate katega nahi, pura dikhega */
  background: #fdfdfd;
  padding: 10px; /* Border ke andar thodi space */
  transition: 0.5s;
}

/* Overlay & Buttons */
.certificate-section-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(20, 28, 74, 0.9), transparent);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: 0.4s;
}

.certificate-section-box:hover .certificate-section-overlay {
  opacity: 1;
}

.certificate-section-box:hover .certificate-section-img {
  transform: scale(1.05);
}

.certificate-section-info {
  color: #fff;
}

.certificate-section-info h4 {
  font-weight: 500;
  font-size: 17.5px;
}

.certificate-section-info p {
  font-weight: 500;
  font-size: 16px;
}
.certificate-section-view-btn {
  background: #fa9c69;
  color: #fff;
  font-size: 16px;
  padding: 3px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
}

.footer-section-1-logo-container {
  margin-bottom: 20px;
}
.footer-section-1-logo-img {
  max-width: 250px;
  height: auto;
  display: block;
}
/* Container & Section Base */
.donation-section-1 {
  padding: 40px 20px;
  background: #f3f7fe;
  font-family: "Poppins", sans-serif;
}

.donation-section-1-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-items: center;
}

/* --- LEFT SIDE: GLASSMORPHISM UI --- */
.donation-section-1-info-box {
  flex: 1;
  min-width: 320px;
  margin-top: -215px;
}

.donation-section-1-glass-card {
  background: linear-gradient(135deg, #0b559f 0%, #141c4a 100%);
  padding: 50px 40px;
  border-radius: 40px;
  border: 1px solid #e2e8f0;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.donation-section-1-badge {
  background: #fa9c69;
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.donation-section-1-main-heading {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  margin: 25px 0;
  line-height: 1.1;
}

.donation-section-1-para {
  color: #e6e0e0;
  font-size: 16px;
  text-align: justify;
  line-height: 1.8;
  margin-bottom: 35px;
}

.donation-section-1-highlight {
  background: #ffffff;
  padding: 25px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.donation-section-1-icon-circle {
  width: 55px;
  height: 55px;
  background: #fa9c69;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.donation-section-1-h-text h4 {
  margin: 0;
  font-size: 18px;
  color: #000;
  font-weight: 700;
}

.donation-section-1-h-text p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #000;
}

.donation-section-1-trust-badges {
  display: flex;
  gap: 30px;
}

.donation-section-1-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cbd5e1;
  font-size: 14px;
}

.donation-section-1-trust-item i {
  color: #141c4a;
}

/* --- RIGHT SIDE: FORM UI --- */
.donation-section-1-form-wrapper {
  min-width: 380px;
}

.donation-section-1-form-card {
  background: #ffffff;
  padding: 45px;
  border-radius: 35px;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.donation-section-1-form-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 15px;
}

/* Amount Selection Grid */
.donation-section-1-amount-container {
  background: #f8fafc;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 25px;
}

.donation-section-1-label-main {
  display: block;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1a1a1a;
  font-size: 15px;
}

.donation-section-1-amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.donation-section-1-amount-box input {
  display: none;
}

.donation-section-1-amt-btn {
  display: block;
  text-align: center;
  padding: 6px 5px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  font-size: 13px;
}

.donation-section-1-amount-box input:checked + .donation-section-1-amt-btn {
  background: #141c4a;
  border-color: #141c4a;
  color: #fff;
}

.donation-section-1-other-amt {
  margin-top: 15px;
}

/* Form Fields Grid */
.donation-section-1-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.donation-section-1-field label {
  font-size: 12px;
  font-weight: 600;
  color: #13161a;
  margin-bottom: 5px;
  display: block;
}

.donation-section-1-input-field,
.donation-section-1-field input,
.donation-section-1-field textarea {
  width: 100%;
  padding: 7px 15px;
  border: 1px solid #ccced0;
  border-radius: 10px;
  font-size: 14px;
  transition: 0.3s;
}

.donation-section-1-field input:focus {
  border-color: #13161a;
  outline: none;
}

.donation-section-1-full-width {
  grid-column: span 2;
}

.donation-section-1-submit {
  width: 50%;
  margin: 30px auto 0 auto; /* Top margin 30px, Left/Right auto se center hoga */
  display: block; /* Block element center alignment ke liye zaruri hai */
  background: #141c4a;
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.4s;
  text-align: center; /* Text ko button ke andar center karne ke liye */
}

.donation-section-1-submit:hover {
  background: #fca678; /* Hover par color change for better UI */
  transform: translateY(-3px);
}

.header .header-area.homepage7 .header-top-area .header-elements {
  padding: 22px 50px;
}

.what-we-do-section {
  padding: 40px 20px;
  background-color: #f8fafc;
  font-family: "Poppins", sans-serif;
}

.what-we-do-section-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Grid Layout */
.what-we-do-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Card Design */
.what-we-do-section-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border-bottom: 6px solid transparent;
}

.what-we-do-section-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.what-we-do-section-image-box {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.what-we-do-section-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.what-we-do-section-card:hover .what-we-do-section-image-box img {
  transform: scale(1.1);
}

.what-we-do-section-content {
  padding: 30px;
  text-align: center;
}

.what-we-do-section-card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.what-we-do-section-text {
  font-size: 16.5px;
  color: #1a1a1a;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: justify;
}

/* Button Styling */
.what-we-do-section-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  padding: 7px 24px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* Color Accents */
.what-we-do-section-pink {
  border-color: #ff4d6d;
}
.what-we-do-section-pink .what-we-do-section-btn {
  border: 1px solid #ff4d6d;
  color: #ff4d6d;
}
.what-we-do-section-pink .what-we-do-section-btn:hover {
  background: #ff4d6d;
  color: #fff;
}

.what-we-do-section-orange {
  border-color: #f39c12;
}
.what-we-do-section-orange .what-we-do-section-btn {
  border: 1px solid #f39c12;
  color: #f39c12;
}
.what-we-do-section-orange .what-we-do-section-btn:hover {
  background: #f39c12;
  color: #fff;
}

.what-we-do-section-teal {
  border-color: #1abc9c;
}
.what-we-do-section-teal .what-we-do-section-btn {
  border: 1px solid #1abc9c;
  color: #1abc9c;
}
.what-we-do-section-teal .what-we-do-section-btn:hover {
  background: #1abc9c;
  color: #fff;
}

.what-we-do-section-purple {
  border-color: #9b59b6;
}
.what-we-do-section-purple .what-we-do-section-btn {
  border: 1px solid #9b59b6;
  color: #9b59b6;
}
.what-we-do-section-purple .what-we-do-section-btn:hover {
  background: #9b59b6;
  color: #fff;
}

.what-we-do-section-blue {
  border-color: #3498db;
}
.what-we-do-section-blue .what-we-do-section-btn {
  border: 1px solid #3498db;
  color: #3498db;
}
.what-we-do-section-blue .what-we-do-section-btn:hover {
  background: #3498db;
  color: #fff;
}

.what-we-do-section-green {
  border-color: #27ae60;
}
.what-we-do-section-green .what-we-do-section-btn {
  border: 1px solid #27ae60;
  color: #27ae60;
}
.what-we-do-section-green .what-we-do-section-btn:hover {
  background: #27ae60;
  color: #fff;
}

.vision-mission-flow-section {
  padding: 40px 0px 50px;
  background-color: #edebeb;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.vision-mission-flow-container {
  max-width: 1200px;
  margin: 0 auto;
}

.vision-mission-flow-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Individual Item Wrapper */
.vision-mission-flow-item {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 250px;
}

/* Main Circle Styling */
.vision-mission-flow-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 10px solid;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 25px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  background: #fff;
  z-index: 2;
}

.vision-mission-flow-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.vision-mission-flow-icon {
  font-size: 35px;
  color: #333;
  margin-bottom: 15px;
}

.vision-mission-flow-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.vision-mission-flow-desc {
  font-size: 13px;
  color: #000;
  text-align: center;
  letter-spacing: 0.9px;
  line-height: 1.5;
  font-weight: 500;
}

/* Connecting Line Styling */
.vision-mission-flow-connector {
  flex-grow: 1;
  height: 30px;
  display: flex;
  align-items: center;
  margin: 0 -15px;
  z-index: 1;
}

.vision-mission-flow-line {
  width: 100%;
  height: 12px;
  position: relative;
}

.vision-mission-flow-line::before,
.vision-mission-flow-line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  left: 0;
}

.vision-mission-flow-line::before {
  top: -12px;
}
.vision-mission-flow-line::after {
  bottom: -12px;
}

/* --- COLOR THEMES (Matching Reference Image) --- */

/* Green Theme */
.vision-mission-flow-green .vision-mission-flow-circle {
  border-color: #8bc34a;
}
.vision-mission-flow-green .vision-mission-flow-line {
  background-color: #8bc34a;
}
.vision-mission-flow-green .vision-mission-flow-line::before,
.vision-mission-flow-green .vision-mission-flow-line::after {
  background-color: rgba(139, 195, 74, 0.4);
}

/* Teal Theme */
.vision-mission-flow-teal .vision-mission-flow-circle {
  border-color: #00bcd4;
}
.vision-mission-flow-teal .vision-mission-flow-line {
  background-color: #00bcd4;
}
.vision-mission-flow-teal .vision-mission-flow-line::before,
.vision-mission-flow-teal .vision-mission-flow-line::after {
  background-color: rgba(0, 188, 212, 0.4);
}

/* Orange Theme */
.vision-mission-flow-orange .vision-mission-flow-circle {
  border-color: #ffb74d;
}
.vision-mission-flow-orange .vision-mission-flow-line {
  background-color: #ffb74d;
}
.vision-mission-flow-orange .vision-mission-flow-line::before,
.vision-mission-flow-orange .vision-mission-flow-line::after {
  background-color: rgba(255, 183, 77, 0.4);
}

/* Purple Theme */
.vision-mission-flow-purple .vision-mission-flow-circle {
  border-color: #7986cb;
}

.breadcrumb-1-section {
  position: relative;
  padding: 100px 0 120px;
  background-image: url("../img1/2.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax Effect */
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

/* Dark Overlay for better text visibility */
.breadcrumb-1-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(13, 14, 14, 0.9),
    rgba(6, 6, 6, 0.7)
  ); /* Theme colors */
  z-index: 1;
}

.breadcrumb-1-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  top: 59px;
}

.breadcrumb-1-title {
  font-size: 42px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.breadcrumb-1-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
}

.breadcrumb-1-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-1-link:hover {
  color: #141c4a;
}

.breadcrumb-1-separator {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-1-current {
  color: #e4e6f2;
  font-weight: 500;
}

/* Wave Shape Styling */
.breadcrumb-1-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 2;
}

.breadcrumb-1-shape svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.breadcrumb-1-shape-fill {
  fill: #ffffff; /* Page background color (white) se match karein */
}

/* Base Button Styling */
.ngo-1-donate-btn {
  background-color: #141c4a; /* Aapka bataya hua color */
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  padding: 8px 8px 8px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 2px solid #141c4a;
  box-shadow: 0 4px 15px rgba(20, 28, 74, 0.3);
}

/* Text Styling */
.ngo-1-donate-btn span {
  margin-right: 15px;
}

/* Circle behind the Icon */
.ngo-1-icon-circle {
  background-color: #ffffff;
  color: #141c4a;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

/* Hover Effects */
.ngo-1-donate-btn:hover {
  transform: translateY(-3px);
}

.ngo-1-donate-btn:hover .ngo-1-icon-circle {
  transform: rotate(360deg); /* Icon rotation effect */
}

.header .header-area.homepage7 .main-menu-ex.homepage6 ul li:hover > a {
  color: #141c4a !important;
}

.header
  .header-area.homepage7
  .main-menu-ex.homepage6
  ul
  li
  ul
  li
  a:hover::after {
  color: #141c4a !important;
}
.header
  .header-area.homepage7
  .main-menu-ex.homepage6
  ul
  li
  ul
  li
  a:hover::after {
  background: #141c4a !important;
}
@keyframes ngo-1-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(20, 28, 74, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(20, 28, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(20, 28, 74, 0);
  }
}
/* NGO Custom Button - Square Round Design */
.shivshakti-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 35px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: 8px; /* Square-Round Look */
  background-color: #141c4a;
  color: #ffffff !important;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 6px 15px rgba(20, 28, 74, 0.2);
  cursor: pointer;
  text-decoration: none;
  gap: 12px;
}

/* Hover Effect */
.shivshakti-btn:hover {
  transform: translateY(-4px); /* Eye-catching Lift */
  box-shadow: 0 12px 25px rgba(20, 28, 74, 0.4);
  background-color: #1a255d; /* Slightly Lighter Navy */
}

/* Moving Shine Effect (Eye-Chanting Animation) */
.shivshakti-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: none;
}

.shivshakti-btn:hover::after {
  left: 150%;
  transition: all 0.6s ease-in-out;
}

/* Outline Button Variation (Slide 2/3 ke liye) */
.shivshakti-btn--outline {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #ffffff;
  backdrop-filter: blur(5px); /* Modern Glass Effect */
}

.shivshakti-btn--outline:hover {
  background-color: #ffffff;
  color: #141c4a !important;
}

/* Icon Animation */
.shivshakti-btn i {
  transition: transform 0.3s ease;
}

.shivshakti-btn:hover i {
  transform: translateX(5px); /* Arrow thoda move karega */
}
.shivshakti-slider__nav-prev:hover,
.shivshakti-slider__nav-next:hover {
  background: #141c4a;
}
.shivshakti-slider__pagination .swiper-pagination-bullet-active {
  background: #141c4a;
}
.about-us-2-area {
  padding: 40px 0;
  background-color: #ffffff;
  overflow: hidden;
}

.about-us-2-row {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* Image Column Styling */
.about-us-2-image-col {
  flex: 1;
  min-width: 350px;
}

.about-us-2-img-wrapper {
  position: relative;
  padding-right: 30px;
  padding-bottom: 30px;
}

.about-us-2-img-wrapper img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-us-2-experience-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #141c4a;
  color: #fff;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 10px 10px 30px rgba(20, 28, 74, 0.2);
}

.about-us-2-years {
  display: block;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.about-us-2-exp-text {
  font-size: 14px;
  font-weight: 500;
}

/* Content Column Styling */
.about-us-2-content-col {
  flex: 1.2;
  min-width: 350px;
}

.about-us-2-tagline {
  color: #141c4a;
  font-weight: 600;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 15px;
}
.about-us-2-desc {
  font-size: 17.5px;
  color: #000 !important;
}

.about-us-2-title {
  font-size: 33px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
}

.about-us-2-desc {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
}

/* Mission Grid Inside About */
.about-us-2-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

.about-us-2-mission-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.about-us-2-mission-item i {
  font-size: 24px;
  color: #141c4a;
  background: #f0f2f8;
  padding: 15px;
  border-radius: 12px;
}

.about-us-2-mission-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.about-us-2-mission-item p {
  font-size: 15px;
  color: #000;
}

/* Square-Round Button */
.about-us-2-btn {
  display: inline-block;
  padding: 12px 35px;
  background-color: #141c4a;
  color: #fff !important;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border-radius: 8px; /* Square Round */
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(20, 28, 74, 0.2);
}

.about-us-2-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(20, 28, 74, 0.3);
}

.activites-1-area {
  padding: 40px 0;
  background-color: #f4f8fb;
}

.activites-1-header {
  margin-bottom: 60px;
}

.activites-1-subtitle {
  color: #141c4a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 17px;
}

.activites-1-title {
  font-size: 33px;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 10px;
}

.activites-1-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

/* Hexagon & Card Styling */
.activites-1-item {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 35px 0 35px 0;
  text-align: left;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: 0.4s ease;
  border-bottom: 5px solid transparent;
}

.activites-1-item:hover {
  transform: translateY(-10px);
  border-color: #141c4a;
  box-shadow: 0 20px 40px rgba(20, 28, 74, 0.1);
}

.activites-1-hexagon {
  width: 76px;
  height: 65px;
  background: linear-gradient(135deg, #141c4a 0%, #3a4b8c 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 25px;
}

.activites-1-icon {
  color: #ffffff;
  font-size: 28px;
}

.activites-1-number {
  position: absolute;
  bottom: -5px;
  right: -5px;
  background: #ffffff;
  color: #141c4a;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.activites-1-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.activites-1-content p {
  font-size: 16px;
  color: #000;
  text-align: justify;
  line-height: 1.6;
  margin-bottom: 20px;
}

.activites-1-link {
  color: #1a1a1a;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.activites-1-link:hover {
  gap: 12px;
  color: #3a4b8c;
}

.why-choose-us-1-section {
  padding: 40px 0px;
  background-color: #d8d9db;
  font-family: "Poppins", sans-serif;
}

.why-choose-us-1-container {
  max-width: 1140px;
  margin: 0 auto;
}

.why-choose-us-1-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-choose-us-1-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.why-choose-us-1-card {
  padding: 45px 30px;
  border-radius: 25px;
  transition: all 0.4s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-us-1-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Icon Styling */
.why-choose-us-1-icon-circle {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15); /* Glass effect */
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 25px;
  backdrop-filter: blur(5px);
}

.why-choose-us-1-card-title {
  font-size: 21px;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 600;
}

.why-choose-us-1-card-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85); /* Semi-white text */
  line-height: 1.6;
  text-align: justify;
}

/* --- Professional Background Colors --- */

/* 1. Deep Blue */
.why-choose-us-1-card-blue {
  background: linear-gradient(180deg, #222d4f 0%, #232d4c 100%);
}
.why-choose-us-1-card-blue i {
  color: #818cf8;
}

/* 2. Muted Rose/Pink */
.why-choose-us-1-card-pink {
  background: linear-gradient(180deg, #825659 0%, #ab6e72 100%);
}
.why-choose-us-1-card-pink i {
  color: #fda4af;
}

/* 3. Deep Purple */
.why-choose-us-1-card-purple {
  background: linear-gradient(180deg, #4e4773 0%, #5c5289 100%);
}
.why-choose-us-1-card-purple i {
  color: #c084fc;
}

/* 4. Slate Teal (New) */
.why-choose-us-1-card-teal {
  background: linear-gradient(180deg, #2d5a5e 0%, #3a747a 100%);
}
.why-choose-us-1-card-teal i {
  color: #5eead4;
}

/* 5. Warm Sienna (New) */
.why-choose-us-1-card-orange {
  background: linear-gradient(180deg, #7a4f37 0%, #966449 100%);
}
.why-choose-us-1-card-orange i {
  color: #fdba74;
}

/* 6. Forest Gray (New) */
.why-choose-us-1-card-green {
  background: linear-gradient(180deg, #3d4f44 0%, #4f6356 100%);
}
.why-choose-us-1-card-green i {
  color: #86efac;
}

/* Center the button container */
.gallery-view-more-footer {
  display: flex;
  justify-content: center;
  padding: 40px 0;
  background-color: #ffffff; /* Page background match karne ke liye */
}

.gallery-view-more-btn {
  display: inline-flex;
  align-items: center;
  background-color: #141c4a; /* Aapka provided color */
  color: #ffffff;
  text-decoration: none;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
  border: 2px solid #141c4a;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.gallery-view-more-btn:hover {
  background-color: transparent;
  color: #141c4a;
  box-shadow: 0 10px 20px rgba(20, 28, 74, 0.2);
}

.gallery-view-more-text {
  margin-right: 12px;
}

.gallery-view-more-icon {
  transition: transform 0.3s ease;
}

/* Arrow Movement on Hover */
.gallery-view-more-btn:hover .gallery-view-more-icon {
  transform: translateX(8px);
}

/* Active State (Click effect) */
.gallery-view-more-btn:active {
  transform: scale(0.95);
}
.gallery-1-container {
  padding: 40px 0 10px;
}
/* For Mobile */

.contact-us-1-section {
  padding: 40px 0;
  background-color: #d5d6d9;
  font-family: "Poppins", sans-serif;
}

.contact-us-1-container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-us-1-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-us-1-title {
  font-size: 33px;
  color: #1a1a1a; /* Professional Dark Blue */
  font-weight: 700;
}

.contact-us-1-subtitle {
  color: #1a1a1a;
  font-size: 16px;
  margin-top: 5px;
}

.contact-us-1-wrapper {
  display: flex;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Left Sidebar Info */
.contact-us-1-info-card {
  flex: 0 0 38%;
  background: linear-gradient(135deg, #141c4a 0%, #232d4c 100%);
  padding: 50px 40px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.contact-us-1-info-title {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-us-1-info-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}
.contact-us-1-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  font-size: 15px;
}

.contact-us-1-info-item i,
.contact-us-1-info-item svg {
  width: 16px !important; /* Circle ka size fix kiya */
  /* height: 45px !important; */
  padding: 12px !important; /* Icon ko circle ke andar space dene ke liye */
  background: rgba(255, 255, 255, 0.15) !important;
  border-radius: 50% !important;

  /* Center aligning the icon inside the circle */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  margin-right: 15px !important;
  color: #ffffff !important;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-us-1-circle-shape {
  position: absolute !important;
  bottom: -50px !important;
  right: -50px !important;
  width: 200px !important;
  height: 200px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border-radius: 50% !important;
  z-index: 0;
}
/* Form Styling */
.contact-us-1-form-card {
  flex: 1;
  padding: 50px 40px;
}

.contact-us-1-form-row {
  display: flex;
  gap: 20px;
}

.contact-us-1-input-group {
  margin-bottom: 25px;
  width: 100%;
}

.contact-us-1-input-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #141c4a;
  margin-bottom: 8px;
}

.contact-us-1-input-group input,
.contact-us-1-input-group textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 2px solid #e1e5ee;
  outline: none;
  font-size: 15px;
  transition: border-color 0.3s;
  background: transparent;
}

.contact-us-1-input-group input:focus,
.contact-us-1-input-group textarea:focus {
  border-color: #141c4a;
}

.contact-us-1-submit-btn {
  background-color: #141c4a;
  color: #fff;
  border: none;
  padding: 12px 35px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 4px; /* Sharp corners */
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.contact-us-1-submit-btn:hover {
  background-color: #1e2a6d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(20, 28, 74, 0.3);
}

.footer-section-1 {
  background-color: #141c4a; /* Aapka provided deep blue color */
  color: #ffffff;
  padding: 70px 0 20px 0;
  font-family: "Poppins", sans-serif;
}

.footer-section-1-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section-1-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

/* Column Styles */
.footer-section-1-logo {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-section-1-about {
  font-size: 15px;
  text-align: justify;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
}

.footer-section-1-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section-1-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #f6bc9a !important;
}

/* Links Style */
.footer-section-1-links {
  list-style: none;
  padding: 0;
}

.footer-section-1-links li {
  margin-bottom: 12px;
}

.footer-section-1-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.footer-section-1-links a:hover {
  color: #ffffff;
  padding-left: 8px;
}

/* Social Icons */
.footer-section-1-socials {
  display: flex;
  gap: 15px;
}

.footer-section-1-socials a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section-1-socials a:hover {
  background-color: #f6bc9a;
  transform: translateY(-3px);
}

/* Contact Items */
.footer-section-1-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-section-1-contact-item i,
.footer-section-1-contact-item svg {
  color: #f6bc9a;
  margin-top: 8px;
}

/* Bottom Copyright */
.footer-section-1-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
  color: rgba(250, 245, 245, 0.8);
}

@media (max-width: 1024px) {
  .vision-mission-flow-wrapper {
    justify-content: center;
  }
  .vision-mission-flow-connector {
    display: none;
  }
  .vision-mission-flow-item {
    flex: none;
    margin-bottom: 30px;
  }
}
@media (max-width: 850px) {
  .contact-us-1-wrapper {
    flex-direction: column;
  }
  .contact-us-1-form-row {
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 768px) {
  .certificate-section {
    padding: 40px 15px; /* Mobile par padding kam ki gayi hai */
  }

  .certificate-section-header {
    margin-bottom: 30px;
  }

  .certificate-section-title {
    font-size: 24px; /* Title thoda chota mobile ke liye */
  }

  /* Ek row mein 1 certificate (100% width) */
  .certificate-section-grid {
    grid-template-columns: 1fr;
    gap: 20px; /* Cards ke beech ki space */
  }

  .certificate-section-box {
    height: 380px; /* Mobile screen ke hisaab se height adjust ki hai */
    border-radius: 12px;
  }

  .certificate-section-img {
    padding: 5px; /* Mobile par padding kam ki hai */
  }

  /* Overlay mobile par hamesha dikhe (Optional) ya hover touch par */
  .certificate-section-overlay {
    padding: 15px;
    height: 50%; /* Content area mobile par thoda bada rakha hai */
  }

  .certificate-section-info h4 {
    font-size: 16px;
  }

  .certificate-section-info p {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .certificate-section-view-btn {
    padding: 6px 15px;
    font-size: 11px;
    width: 100%; /* Mobile par button full width easy click ke liye */
    text-align: center;
    display: block;
  }

  .breadcrumb-1-title {
    font-size: 32px;
  }
  .breadcrumb-1-section {
    padding: 60px 0 80px;
  }
  .what-we-do-section-title {
    font-size: 32px;
  }
  .what-we-do-section-grid {
    grid-template-columns: 1fr;
  }

  .donation-section-1 {
    padding: 40px 15px; /* Mobile par padding kam ki gayi hai */
  }

  .donation-section-1-container {
    flex-direction: column; /* Content ko vertical stack karne ke liye */
    gap: 30px;
  }

  /* Left Side Adjustments */
  .donation-section-1-info-box {
    margin-top: 0; /* Desktop ka negative margin mobile par hata diya */
    width: 100%;
  }

  .donation-section-1-glass-card {
    padding: 30px 20px;
    border-radius: 25px;
    text-align: center; /* Mobile par text center achha lagta hai */
  }

  .donation-section-1-main-heading {
    font-size: 26px; /* Font size thoda chota kiya mobile ke liye */
  }

  .donation-section-1-highlight {
    flex-direction: column; /* Icon aur text ko upar-niche kiya */
    padding: 20px;
    text-align: center;
  }

  .donation-section-1-trust-badges {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  /* Right Side (Form) Adjustments */
  .donation-section-1-form-wrapper {
    min-width: 100%;
    width: 100%;
  }

  .donation-section-1-form-card {
    padding: 25px 20px;
    border-radius: 25px;
  }

  .donation-section-1-amount-grid {
    grid-template-columns: repeat(2, 1fr); /* 4 ki jagah 2 column (2x2 grid) */
    gap: 8px;
  }

  .donation-section-1-form-grid {
    grid-template-columns: 1fr; /* Form fields ko single column kar diya */
  }

  .donation-section-1-full-width {
    grid-column: span 1;
  }

  /* Button Adjustment */
  .donation-section-1-submit {
    width: 100%; /* Mobile par button full width hone se click karna easy hota hai */
    font-size: 16px;
    padding: 12px;
  }
}
@media (max-width: 568px) {
  .footer-section-1-logo-img {
    margin: 0 auto;
  }
  .gallery-view-more-btn {
    padding: 10px 25px;
    font-size: 13px;
    width: 80%;
    justify-content: center;
  }
  .shivshakti-slider__content {
    text-align: justify;
  }
  .shivshakti-slider__cta {
    margin-top: -30px;
  }
  .shivshakti-btn {
    padding: 8px 35px !important;
    font-size: 11px;
  }
  .about-us-2-experience-badge {
    padding: 9px;
    right: 14px;
  }
  .about-us-2-tagline,
  .activites-1-subtitle {
    font-size: 14px;
  }
  .about-us-2-title,
  .activites-1-title {
    font-size: 28px;
  }
  .activites-1-area {
    padding: 30px 0;
  }
  .activites-1-content h3 {
    font-size: 18px;
  }
  .activites-1-icon {
    font-size: 21px;
  }
  .activites-1-hexagon {
    width: 65px;
    height: 52px;
  }
  .activites-1-item {
    padding: 22px 24px;
  }
  .about-us-2-years {
    display: block;
    font-size: 26px;
    font-weight: 600;
  }
  .about-us-2-exp-text {
    font-size: 12px;
  }
  .why-choose-us-1-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 10px;
  }
  .why-choose-us-1-card-title {
    font-size: 20px;
  }
  .why-choose-us-1-card-text {
    font-size: 15px;
  }
  .why-choose-us-1-icon-circle {
    width: 50px;
    height: 50px;
  }
  .why-choose-us-1-card {
    padding: 22px 28px;
  }
  .gallery-view-more-footer {
    padding: 17px 0;
  }
  .about-us-2-row {
    flex-direction: column;
    text-align: center;
  }
  .about-us-2-mission-grid {
    grid-template-columns: 1fr;
  }
  .about-us-2-mission-item {
    flex-direction: column;
    align-items: center;
  }
  .about-us-2-desc {
    text-align: justify;
    padding-left: 4px;
    padding-right: 14px;
    font-size: 16px;
  }
  .about-us-2-btn {
    font-size: 13px;
    padding: 10px 35px;
  }
  .about-us-2-row {
    gap: 21px;
  }
  .activites-1-grid {
    grid-template-columns: 1fr;
  }
  .activites-1-item {
    text-align: center;
  }
  .activites-1-hexagon {
    margin: 0 auto 25px;
  }

  .footer-section-1-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-section-1-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-section-1-socials {
    justify-content: center;
  }
  .footer-section-1-contact-item {
    justify-content: center;
  }
  .contact-us-1-info-card {
    padding: 33px 40px 6px;
  }

  .footer-section-1 {
    padding: 30px 0 20px 0;
  }
  .footer-section-1-bottom {
    margin-top: -45px;
  }
  .contact-us-1-wrapper {
    margin-top: -30px;
  }
  .vision-mission-flow-section {
    padding: 30px 0px 10px;
  }
  .what-we-do-section {
    padding: 30px 20px;
  }

  .donation-section-1-main-heading {
    font-size: 22px;
  }

  .donation-section-1-amt-btn {
    font-size: 12px;
    padding: 10px 2px;
  }

  .certificate-section-box {
    height: 300px; /* Chote phone ke liye height aur kam */
  }

  .certificate-section-title {
    font-size: 20px;
  }
  .certificate-section {
    padding: 30px 20px;
  }
}
