* {
  margin: 0;
  padding: 0;
  font-family: var(--theme-font);
}

body {
  font-family: var(--theme-font);
  box-sizing: border-box;
}

:root {
  --theme-color: #397655;
  --theme-color2: #6d5133;
  --theme-font: "Poppins", sans-serif;
  --heading-font: "Poppins", sans-serif;
  --letter-spacing: -2px;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  color: #212121;
  line-height: 2;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--theme-font);
}

.darkbg {
  background-color: #1d1f22;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 300;
}

.theme-color {
  color: var(--theme-color);
  font-family: inherit;
}

section {
  overflow: hidden;
}

.theme-color2 {
  color: var(--theme-color2);
  font-family: inherit;
}

.common-img {
  border: solid 1px #000;
  padding: 10px;
}

.title-des {
  text-transform: uppercase;
  font-weight: 600;
  color: #a5a5a5;
  padding: 4px 16px 4px 16px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-radius: 25px;
  display: block;
  font-size: 14px;
  margin-bottom: 11px;
  width: -moz-fit-content;
  width: fit-content;
}

ul li {
  color: #212121;
  line-height: 1.8;
  font-size: 16px;
  font-weight: 400;
}

.common-heading {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  color: #1d1f22;
  letter-spacing: -1.5px;
  margin-bottom: 3rem;
  position: relative;
  font-family: var(--theme-font);
}
.common-heading span {
  color: var(--theme-color);
  position: relative;
  display: inline-block;
}
.common-heading.with-line {
  padding-bottom: 20px;
}
.common-heading.with-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 4px;
  background: var(--theme-color);
  border-radius: 2px;
}

.common-before img {
  max-width: 100px;
  margin-bottom: 1.2rem;
}

.common-bg {
  background-color: var(--theme-color);
}

.common-space {
  padding: 90px 0;
}

.common-btn {
  background-color: var(--theme-color);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  font-weight: 300;
  text-transform: uppercase;
  border: solid 1px #ddd;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s;
  border: solid 1px var(--theme-color);
  border-radius: 0px;
}
.common-btn:hover {
  background-color: transparent;
  color: var(--theme-color);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  z-index: 99;
}
header.sticky {
  box-shadow: 1px 6px 12px -12px #000;
}
header.sticky .navbar-brand img {
  max-width: 85px;
}
header .navbar-brand {
  background-color: #fff;
  padding: 4px;
  border-radius: 0 0 8px 8px;
}
header .navbar-brand img {
  max-width: 115px;
  transition: all 0.3s;
}
header nav {
  padding: 0 0 !important;
  transition: all 0.3s;
}
header nav.bg-body-tertiary {
  background-color: transparent !important;
}
header nav .navbar-nav li {
  padding-left: 1rem;
}
header nav .navbar-nav li a {
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  text-transform: uppercase;
}
header nav .navbar-nav li a:hover {
  color: var(--theme-color);
}
header nav .navbar-nav li .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
}
header nav .navbar-nav li .dropdown-menu li {
  padding-left: 0;
}
header nav .navbar-nav li .dropdown-menu li a {
  background-color: var(--theme-color);
  color: #fff;
  padding: 1rem;
  border-bottom: solid 1px #c58637;
}
header nav .navbar-nav li .dropdown-menu li a:focus {
  background-color: var(--theme-color);
  color: #fff;
}
header nav .navbar-nav li .dropdown-menu li a:hover {
  background-color: #8f621b;
  color: #fff;
}
header nav .navbar-nav li.dropdown:hover .dropdown-menu {
  display: block;
}
header .common-btn {
  border: unset;
  background-color: var(--theme-color);
  font-weight: 600;
  color: #fff;
  margin-left: 60px;
}
header .common-btn:hover {
  color: #fff;
  background-color: var(--theme-color2);
}

.about-modern {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.about-modern .about-watermark {
  position: absolute;
  top: 10%;
  left: -5%;
  font-size: 15vw;
  font-weight: 900;
  color: rgba(57, 118, 85, 0.03);
  z-index: 0;
  pointer-events: none;
  text-transform: uppercase;
}
.about-modern .image-stack {
  display: grid;
  position: relative;
  z-index: 2;
}
.about-modern .image-stack__item {
  grid-row: 1;
}
.about-modern .image-stack__item img {
  width: 100%;
  display: block;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  -o-object-fit: cover;
     object-fit: cover;
}
.about-modern .image-stack__item--top {
  grid-column: 1/span 8;
  padding-top: 10%;
  z-index: 1;
}
.about-modern .image-stack__item--top img {
  border-radius: 100px 20px 20px 20px;
}
.about-modern .image-stack__item--bottom {
  grid-column: 4/-1;
  z-index: 2;
  position: relative;
}
.about-modern .image-stack__item--bottom img {
  border: 10px solid #fff;
  border-radius: 20px 20px 100px 20px;
}
.about-modern .image-stack .mini-stats-card {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: #6d5133;
  color: #fff;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 15px;
  box-shadow: 10px 15px 30px rgba(109, 81, 51, 0.3);
}
.about-modern .image-stack .mini-stats-card i {
  font-size: 30px;
  opacity: 0.8;
}
.about-modern .image-stack .mini-stats-card h4 {
  font-weight: 700;
  margin: 0;
  line-height: 1;
}
.about-modern .image-stack .mini-stats-card p {
  font-size: 12px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}
.about-modern .about-text-wrapper {
  padding-left: 50px;
  position: relative;
  z-index: 2;
}
.about-modern .about-text-wrapper .subtitle-modern {
  color: #6d5133;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  display: inline-block;
  border-bottom: 2px solid #397655;
}
.about-modern .about-text-wrapper .mission-quote {
  border-left: 4px solid #397655;
  padding-left: 20px;
  font-style: italic;
  font-size: 20px;
  color: #333;
  margin-bottom: 25px;
  font-weight: 500;
}
.about-modern .about-text-wrapper .description {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}
.about-modern .about-text-wrapper .philosophy-grid {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
.about-modern .about-text-wrapper .philosophy-grid .p-item .number {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: rgba(57, 118, 85, 0.2);
  line-height: 1;
}
.about-modern .about-text-wrapper .philosophy-grid .p-item h6 {
  font-weight: 700;
  color: #1d1f22;
  margin-top: 5px;
}
.about-modern .about-text-wrapper .btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #397655;
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.about-modern .about-text-wrapper .btn-modern:hover {
  background: #6d5133;
  transform: translateY(-5px);
  color: #fff;
}

@media (max-width: 991px) {
  .about-modern .about-text-wrapper {
    padding-left: 0;
    margin-top: 60px;
  }
  .about-modern .about-watermark {
    font-size: 25vw;
    top: 0;
  }
  .about-modern .image-stack {
    margin-bottom: 30px;
  }
}
.services-advanced {
  background-color: #fcfcfc;
}
.services-advanced .subtitle-modern {
  color: #6d5133;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 2px solid #397655;
  margin-bottom: 15px;
  display: inline-block;
}
.services-advanced .service-box {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.services-advanced .service-box:hover {
  transform: translateY(-12px);
}
.services-advanced .service-box:hover .service-overlay {
  transform: translateY(0);
  opacity: 1;
}
.services-advanced .service-box:hover .service-image img {
  transform: scale(1.1);
}
.services-advanced .service-box .service-image {
  height: 240px;
  position: relative;
}
.services-advanced .service-box .service-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.services-advanced .service-box .service-image .service-icon {
  position: absolute;
  bottom: -25px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #6d5133;
  color: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(109, 81, 51, 0.3);
}
.services-advanced .service-box .service-body {
  padding: 40px 30px;
}
.services-advanced .service-box .service-body h5 {
  color: #397655;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.services-advanced .service-box .service-body h3 {
  font-weight: 800;
  color: #1d1f22;
  font-size: 24px;
  margin-bottom: 15px;
}
.services-advanced .service-box .service-body p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}
.services-advanced .service-box .service-body .service-link {
  color: #1d1f22;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}
.services-advanced .service-box .service-body .service-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}
.services-advanced .service-box .service-body .service-link:hover {
  color: #397655;
}
.services-advanced .service-box .service-body .service-link:hover i {
  transform: translateX(5px);
}
.services-advanced .service-box .service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(57, 118, 85, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  transform: translateY(100%);
  transition: all 0.5s ease-in-out;
  opacity: 0;
  z-index: 5;
}
.services-advanced .service-box .service-overlay .overlay-content {
  color: #fff;
}
.services-advanced .service-box .service-overlay .overlay-content .impact-label {
  font-size: 12px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 15px;
  display: inline-block;
}
.services-advanced .service-box .service-overlay .overlay-content h4 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
}
.services-advanced .service-box .service-overlay .overlay-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  margin-bottom: 25px;
}
.services-advanced .service-box .service-overlay .overlay-content .common-btn {
  background: #fff;
  color: #397655;
  border-color: #fff;
  font-weight: 700;
}
.services-advanced .service-box .service-overlay .overlay-content .common-btn:hover {
  background: #6d5133;
  color: #fff;
  border-color: #6d5133;
}

.impact-section {
  background-color: #f4f7f5;
  padding: 100px 0;
}
.impact-section .impact-main-card {
  background-color: #397655;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(57, 118, 85, 0.2);
  position: relative;
}
.impact-section .impact-main-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(100px, -100px);
}
.impact-section .impact-intro {
  padding: 60px;
  height: 100%;
}
.impact-section .impact-intro .impact-tag {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: inline-block;
}
.impact-section .impact-intro h2 {
  font-weight: 800;
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.impact-section .impact-intro h2 span {
  color: #d4c4b5;
}
.impact-section .impact-intro p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 30px;
}
.impact-section .impact-intro .trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.impact-section .impact-intro .trust-badge i {
  color: #d4c4b5;
  font-size: 20px;
}
.impact-section .stats-grid {
  background: rgba(255, 255, 255, 0.03);
  height: 100%;
}
.impact-section .stats-grid .stat-item {
  padding: 60px 40px;
  display: flex;
  align-items: center;
  gap: 25px;
  transition: background 0.3s ease;
}
.impact-section .stats-grid .stat-item:hover {
  background: rgba(255, 255, 255, 0.05);
}
.impact-section .stats-grid .stat-item .stat-icon {
  font-size: 35px;
  color: #d4c4b5;
  opacity: 0.9;
}
.impact-section .stats-grid .stat-item .stat-info h3 {
  display: inline-block;
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  margin: 0;
  line-height: 1;
}
.impact-section .stats-grid .stat-item .stat-info .plus {
  color: #d4c4b5;
  font-size: 24px;
  font-weight: 700;
  margin-left: 5px;
}
.impact-section .stats-grid .stat-item .stat-info p {
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .impact-section .impact-intro {
    padding: 40px;
    text-align: center;
  }
  .impact-section .impact-intro .trust-badge {
    justify-content: center;
  }
  .impact-section .stats-grid .stat-item {
    padding: 40px;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
}
.donation-hub {
  background-color: #f9fbf9;
}
.donation-hub .subtitle-modern {
  color: #6d5133;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 2px solid #397655;
  margin-bottom: 15px;
  display: inline-block;
}
.donation-hub .donation-card {
  background: #fff;
  padding: 40px;
  border-radius: 30px;
  height: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(57, 118, 85, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}
.donation-hub .donation-card:hover {
  transform: translateY(-5px);
}
.donation-hub .donation-card .card-header-modern {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
.donation-hub .donation-card .card-header-modern i {
  width: 50px;
  height: 50px;
  background: #397655;
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.donation-hub .donation-card .card-header-modern h4 {
  margin: 0;
  font-weight: 700;
  color: #1d1f22;
}
.donation-hub .bank-details-grid .detail-row {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px dashed #ddd;
}
.donation-hub .bank-details-grid .detail-row span {
  color: #777;
  font-size: 14px;
}
.donation-hub .bank-details-grid .detail-row strong {
  color: #1d1f22;
  font-weight: 600;
}
.donation-hub .bank-details-grid .detail-row .highlight-text {
  color: #397655;
  letter-spacing: 1px;
  font-family: monospace;
  font-size: 18px;
}
.donation-hub .tax-benefit-tag {
  margin-top: 30px;
  background: rgba(109, 81, 51, 0.08);
  padding: 12px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6d5133;
  font-weight: 600;
  font-size: 13px;
}
.donation-hub .qr-card .qr-wrapper {
  background: #fff;
  padding: 20px;
  border: 2px solid #f1f1f1;
  border-radius: 20px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.donation-hub .qr-card .qr-wrapper img {
  width: 200px;
}
.donation-hub .qr-card .qr-wrapper .qr-scanner-line {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: #397655;
  box-shadow: 0 0 10px #397655;
  animation: scan 3s infinite ease-in-out;
}
.donation-hub .qr-card .upi-id-box {
  background: #f4f4f4;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.donation-hub .qr-card .upi-id-box span {
  font-size: 12px;
  color: #777;
  display: block;
}
.donation-hub .qr-card .upi-id-box p {
  font-weight: 700;
  color: #1d1f22;
  margin: 0;
}
.donation-hub .qr-card .payment-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 24px;
  color: #ccc;
}
.donation-hub .donation-footer-note {
  background: #1d1f22;
  color: #fff;
  padding: 20px 40px;
  border-radius: 100px;
  text-align: center;
}
.donation-hub .donation-footer-note p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.donation-hub .donation-footer-note p strong {
  color: #fff;
  text-decoration: underline;
}
.donation-hub .donation-footer-note p i {
  color: #397655;
  margin-right: 10px;
}

@keyframes scan {
  0%, 100% {
    top: 20px;
  }
  50% {
    top: 220px;
  }
}
@media (max-width: 991px) {
  .donation-hub .donation-footer-note {
    border-radius: 20px;
  }
}
.testimonials-modern {
  background-color: #fbf7f7;
  overflow: hidden;
}
.testimonials-modern .testimonial-intro {
  padding-right: 30px;
  position: relative;
}
.testimonials-modern .testimonial-intro .subtitle-modern {
  color: #6d5133;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 2px solid #397655;
  margin-bottom: 15px;
  display: inline-block;
}
.testimonials-modern .testimonial-intro .quote-decoration {
  font-size: 100px;
  color: rgba(57, 118, 85, 0.05);
  position: absolute;
  bottom: -50px;
  left: 0;
  z-index: -1;
}
.testimonials-modern .testimonial-card {
  background: #fdfdfd;
  padding: 40px;
  border-radius: 30px;
  border: 1px solid #eee;
  margin: 15px;
  transition: all 0.3s ease;
  position: relative;
}
.testimonials-modern .testimonial-card:hover {
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #397655;
}
.testimonials-modern .testimonial-card .stars {
  color: #ffc107;
  font-size: 12px;
  margin-bottom: 20px;
}
.testimonials-modern .testimonial-card .feedback {
  font-style: italic;
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
  min-height: 120px;
}
.testimonials-modern .testimonial-card .user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}
.testimonials-modern .testimonial-card .user-info img {
  width: 60px !important;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #397655;
}
.testimonials-modern .testimonial-card .user-info h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #1d1f22;
}
.testimonials-modern .testimonial-card .user-info span {
  font-size: 13px;
  color: #6d5133;
  font-weight: 500;
}
.testimonials-modern .owl-dots {
  text-align: left;
  margin-top: 30px !important;
  margin-left: 15px;
}
.testimonials-modern .owl-dots .owl-dot span {
  width: 12px !important;
  height: 12px !important;
  background: #ddd !important;
  transition: all 0.3s ease;
}
.testimonials-modern .owl-dots .owl-dot.active span {
  background: #397655 !important;
  width: 30px !important;
}

@media (max-width: 991px) {
  .testimonials-modern .testimonial-intro {
    text-align: center;
    margin-bottom: 50px;
    padding-right: 0;
  }
  .testimonials-modern .testimonial-intro .quote-decoration {
    left: 50%;
    transform: translateX(-50%);
  }
  .testimonials-modern .owl-dots {
    text-align: center;
  }
}
.gallery-modern .subtitle-modern {
  color: #6d5133;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 2px solid #397655;
  margin-bottom: 15px;
  display: inline-block;
}
.gallery-modern .btn-modern-outline {
  padding: 12px 30px;
  border: 2px solid #6d5133;
  color: #6d5133;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 13px;
}
.gallery-modern .btn-modern-outline:hover {
  background: #6d5133;
  color: #fff;
}
.gallery-modern .gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #397655;
}
.gallery-modern .gallery-item.tall {
  height: 520px;
  border-radius: 100px 20px 20px 20px;
}
.gallery-modern .gallery-item:not(.tall):not(.wide) {
  height: 250px;
  border-radius: 20px;
}
.gallery-modern .gallery-item.wide {
  height: 245px;
  border-radius: 20px 20px 100px 20px;
}
.gallery-modern .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-modern .gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(57, 118, 85, 0.9), rgba(109, 81, 51, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transition: all 0.4s ease;
  color: #fff;
}
.gallery-modern .gallery-item .gallery-overlay i {
  font-size: 30px;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
}
.gallery-modern .gallery-item .gallery-overlay .gallery-text {
  position: absolute;
  bottom: 30px;
  left: 30px;
  text-align: left;
  transform: translateY(20px);
  transition: all 0.4s ease 0.2s;
}
.gallery-modern .gallery-item .gallery-overlay .gallery-text span {
  font-size: 12px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 10px;
  border-radius: 4px;
}
.gallery-modern .gallery-item .gallery-overlay .gallery-text h5 {
  margin-top: 10px;
  font-weight: 700;
  font-size: 20px;
}
.gallery-modern .gallery-item:hover img {
  transform: scale(1.1);
  filter: blur(2px);
}
.gallery-modern .gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-modern .gallery-item:hover .gallery-overlay i, .gallery-modern .gallery-item:hover .gallery-overlay .gallery-text {
  transform: translateY(0);
}

@media (max-width: 991px) {
  .gallery-modern .gallery-item, .gallery-modern .gallery-item.tall, .gallery-modern .gallery-item.wide {
    height: 300px;
    border-radius: 20px !important;
  }
}
.footer-modern {
  background-color: #1a2b22;
  position: relative;
  padding-top: 100px;
  color: #fff;
}
.footer-modern .footer-top-curve {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.footer-modern .footer-top-curve svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
  transform: scaleY(-1);
}
.footer-modern .footer-top-curve .shape-fill {
  fill: #fff;
}
.footer-modern .footer-about .footer-logo img {
  max-width: 150px;
}
.footer-modern .footer-about .social-links {
  margin-top: 25px;
  display: flex;
  gap: 12px;
}
.footer-modern .footer-about .social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}
.footer-modern .footer-about .social-links a:hover {
  background: #6d5133;
  transform: translateY(-5px);
}
.footer-modern .footer-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}
.footer-modern .footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #397655;
}
.footer-modern .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-modern .footer-links ul li {
  margin-bottom: 12px;
}
.footer-modern .footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  font-size: 15px;
}
.footer-modern .footer-links ul li a:hover {
  color: #397655;
  padding-left: 8px;
}
.footer-modern .footer-contact .contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.footer-modern .footer-contact .contact-item i {
  color: #6d5133;
  margin-top: 5px;
}
.footer-modern .footer-contact .contact-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin: 0;
}
.footer-modern .footer-bottom {
  margin-top: 80px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-modern .footer-bottom .copyright-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.footer-modern .footer-bottom .footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}
.footer-modern .footer-bottom .footer-legal a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-modern .footer-bottom .footer-legal a:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .footer-modern {
    padding-top: 80px;
  }
  .footer-modern .footer-bottom {
    text-align: center;
  }
  .footer-modern .footer-bottom .footer-legal {
    justify-content: center;
    margin-top: 15px;
  }
}
.premium-hero-slider {
  position: relative;
  overflow: hidden;
  margin-top: 125px;
}
.premium-hero-slider .main-hero-carousel, .premium-hero-slider .owl-stage-outer, .premium-hero-slider .owl-stage, .premium-hero-slider .item {
  height: 100%;
}
.premium-hero-slider .item {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #000;
  height: 82vh;
}
.premium-hero-slider .item .hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.premium-hero-slider .item .hero-bg-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
}
.premium-hero-slider .item .hero-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 10s ease;
  transform: scale(1.1);
}
.premium-hero-slider .item.active .hero-bg {
  transform: scale(1);
}
.premium-hero-slider .hero-content-box {
  position: relative;
  z-index: 10;
  max-width: 700px;
  color: #fff;
}
.premium-hero-slider .hero-content-box .hero-tagline {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #d4c4b5;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
}
.premium-hero-slider .hero-content-box .hero-title {
  font-size: clamp(40px, 6vw, 75px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(40px);
}
.premium-hero-slider .hero-content-box .hero-title span {
  color: #397655;
  display: block;
}
.premium-hero-slider .hero-content-box .hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(50px);
}
.premium-hero-slider .hero-content-box .hero-actions {
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: translateY(60px);
}
.premium-hero-slider .hero-content-box .hero-actions .hero-btn-primary {
  background: #6d5133;
  color: #fff;
  padding: 16px 35px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  font-size: 14px;
  transition: 0.3s;
}
.premium-hero-slider .hero-content-box .hero-actions .hero-btn-primary:hover {
  background: #397655;
  transform: translateY(-3px);
}
.premium-hero-slider .hero-content-box .hero-actions .hero-btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 16px 35px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  font-size: 14px;
  transition: 0.3s;
}
.premium-hero-slider .hero-content-box .hero-actions .hero-btn-outline:hover {
  background: #fff;
  color: #000;
}
.premium-hero-slider .owl-item.active .hero-tagline {
  animation: heroFadeUp 0.8s forwards 0.3s;
}
.premium-hero-slider .owl-item.active .hero-title {
  animation: heroFadeUp 0.8s forwards 0.5s;
}
.premium-hero-slider .owl-item.active .hero-desc {
  animation: heroFadeUp 0.8s forwards 0.7s;
}
.premium-hero-slider .owl-item.active .hero-actions {
  animation: heroFadeUp 0.8s forwards 0.9s;
}
.premium-hero-slider .owl-dots {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}
.premium-hero-slider .owl-dots .owl-dot span {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0;
  margin: 0 5px;
}
.premium-hero-slider .owl-dots .owl-dot.active span {
  background: #397655;
  width: 60px;
}
.premium-hero-slider .hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 50px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.6;
}
.premium-hero-slider .hero-scroll-indicator .mouse-wheel {
  width: 20px;
  height: 35px;
  border: 2px solid #fff;
  border-radius: 20px;
  position: relative;
}
.premium-hero-slider .hero-scroll-indicator .mouse-wheel::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollMouse 2s infinite;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollMouse {
  0% {
    top: 5px;
    opacity: 1;
  }
  100% {
    top: 20px;
    opacity: 0;
  }
}
.breadcrumb-section {
  position: relative;
  padding: 176px 0 61px;
  background-image: url(img/slider.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.breadcrumb-section .breadcrumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(57, 118, 85, 0.84) 0%, rgba(26, 43, 34, 0.92) 100%);
  z-index: 1;
}
.breadcrumb-section .container {
  position: relative;
  z-index: 2;
}
.breadcrumb-section .breadcrumb-content .page-title {
  color: #fff;
  font-size: 45px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -1px;
}
.breadcrumb-section .breadcrumb-content .page-title span {
  color: #d4c4b5;
}
.breadcrumb-section .breadcrumb-content .breadcrumb-list {
  display: inline-flex;
  align-items: center;
  list-style: none;
  padding: 10px 30px;
  margin: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.breadcrumb-section .breadcrumb-content .breadcrumb-list .breadcrumb-item {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.breadcrumb-section .breadcrumb-content .breadcrumb-list .breadcrumb-item a {
  color: #fff;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb-section .breadcrumb-content .breadcrumb-list .breadcrumb-item a i {
  color: #fff;
  font-size: 14px;
}
.breadcrumb-section .breadcrumb-content .breadcrumb-list .breadcrumb-item a:hover {
  color: #fff;
}
.breadcrumb-section .breadcrumb-content .breadcrumb-list .breadcrumb-item.active {
  color: #fff;
  font-weight: 700;
}
.breadcrumb-section .breadcrumb-content .breadcrumb-list span {
  color: #fff;
}
.breadcrumb-section .breadcrumb-content .breadcrumb-list .breadcrumb-separator {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 15px;
  font-size: 12px;
}

.founder-vision {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.founder-vision h2, .founder-vision h3, .founder-vision h4, .founder-vision h5, .founder-vision h6 {
  color: var(--theme-color);
  font-weight: 500;
}
.founder-vision ul li {
  position: relative;
  list-style: none;
}
.founder-vision ul li:before {
  position: absolute;
  left: -25px;
  color: var(--theme-color);
  content: "\f00c";
  font-family: "fontawesome";
  top: 0;
}
.founder-vision .vision-image-wrapper {
  position: relative;
  padding-right: 50px;
  padding-bottom: 50px;
}
.founder-vision .vision-image-wrapper .main-vision-img img {
  border-radius: 20px 150px 20px 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  border: 10px solid #f8f9fa;
}
.founder-vision .vision-image-wrapper .overlay-vision-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  z-index: 2;
}
.founder-vision .vision-image-wrapper .overlay-vision-img img {
  border-radius: 20px;
  border: 8px solid #fff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.founder-vision .vision-image-wrapper .legacy-badge {
  position: absolute;
  top: 40px;
  left: -20px;
  z-index: 3;
  background: #6d5133;
  color: #fff;
  padding: 25px;
  border-radius: 15px;
  transform: rotate(-5deg);
  box-shadow: 10px 10px 30px rgba(109, 81, 51, 0.3);
}
.founder-vision .vision-image-wrapper .legacy-badge .number {
  display: block;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}
.founder-vision .vision-image-wrapper .legacy-badge .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.founder-vision .vision-content {
  padding-left: 30px;
}
.founder-vision .vision-content .subtitle-modern {
  color: #6d5133;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-block;
}
.founder-vision .vision-content .pro-quote {
  background: rgba(57, 118, 85, 0.05);
  border-left: 5px solid #397655;
  padding: 25px 30px;
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
  color: #1d1f22;
  margin: 30px 0;
  border-radius: 0 15px 15px 0;
}
.founder-vision .vision-content .story-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}
.founder-vision .vision-content .vision-values {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}
.founder-vision .vision-content .vision-values .value-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.founder-vision .vision-content .vision-values .value-item .v-icon {
  width: 45px;
  height: 45px;
  background: #397655;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 18px;
}
.founder-vision .vision-content .vision-values .value-item h6 {
  margin: 0;
  font-weight: 700;
  font-size: 15px;
  color: #1d1f22;
}
.founder-vision .vision-content .founder-meta {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.founder-vision .vision-content .founder-meta .signature p {
  font-family: "Dancing Script", cursive;
  font-size: 32px;
  color: #397655;
  margin: 0;
}
.founder-vision .vision-content .founder-meta .designation {
  display: flex;
  flex-direction: column;
  border-left: 2px solid #ddd;
  padding-left: 20px;
}
.founder-vision .vision-content .founder-meta .designation strong {
  font-size: 18px;
  color: #1d1f22;
}
.founder-vision .vision-content .founder-meta .designation span {
  font-size: 14px;
  color: #6d5133;
  font-weight: 500;
}

.member-list-section {
  background-color: #f8fbf9;
}
.member-list-section .table-header-wrapper {
  margin-bottom: 30px;
}
.member-list-section .table-header-wrapper .search-container {
  position: relative;
}
.member-list-section .table-header-wrapper .search-container i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #397655;
}
.member-list-section .table-header-wrapper .search-container .form-control {
  padding-left: 45px;
  height: 55px;
  border-radius: 50px;
  border: 1px solid rgba(57, 118, 85, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  font-size: 14px;
}
.member-list-section .table-header-wrapper .search-container .form-control:focus {
  border-color: #397655;
  box-shadow: 0 5px 15px rgba(57, 118, 85, 0.1);
}
.member-list-section .table-outer-wrapper {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}
.member-list-section .custom-member-table {
  margin-bottom: 0;
}
.member-list-section .custom-member-table thead tr {
  background: linear-gradient(to right, #397655, #2a5840);
}
.member-list-section .custom-member-table thead tr th {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 20px 15px;
  border: none;
  white-space: nowrap;
}
.member-list-section .custom-member-table tbody tr {
  transition: all 0.2s ease;
}
.member-list-section .custom-member-table tbody tr:hover {
  background-color: rgba(57, 118, 85, 0.03);
}
.member-list-section .custom-member-table tbody tr td {
  padding: 18px 15px;
  vertical-align: middle;
  color: #555;
  font-size: 14px;
  border-bottom: 1px solid #f1f1f1;
}
.member-list-section .custom-member-table tbody tr td.member-name {
  font-weight: 700;
  color: #1d1f22;
}
.member-list-section .custom-member-table tbody tr td.aadhaar-mask {
  font-family: monospace;
  letter-spacing: 1px;
  color: #6d5133;
}
.member-list-section .custom-member-table tbody tr td.reg-date {
  font-weight: 700;
  color: #397655;
}
.member-list-section .table-footer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.member-list-section .table-footer-info p {
  font-size: 14px;
  color: #777;
  margin: 0;
}
.member-list-section .table-footer-info .pagination-custom {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
}
.member-list-section .table-footer-info .pagination-custom li a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #eee;
  color: #555;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
}
.member-list-section .table-footer-info .pagination-custom li.active a, .member-list-section .table-footer-info .pagination-custom li a:hover {
  background: #397655;
  color: #fff;
  border-color: #397655;
}

.team-section {
  background-color: #fff;
}
.team-section .team-card-wrapper {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
  border: 1px solid #f1f1f1;
}
.team-section .team-modern-table {
  margin-bottom: 0;
  vertical-align: middle;
}
.team-section .team-modern-table thead tr {
  background: linear-gradient(135deg, #397655 0%, #214532 100%);
}
.team-section .team-modern-table thead tr th {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 25px 20px;
  border: none;
  text-align: center;
}
.team-section .team-modern-table tbody tr {
  transition: all 0.3s ease;
}
.team-section .team-modern-table tbody tr:hover {
  background-color: rgba(57, 118, 85, 0.02);
}
.team-section .team-modern-table tbody tr td {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #f8f8f8;
  vertical-align: middle;
}
.team-section .team-modern-table .serial-no {
  font-weight: 800;
  color: #ddd;
  font-size: 18px;
}
.team-section .team-modern-table .team-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.team-section .team-modern-table .team-avatar::before {
  content: "";
  position: absolute;
  inset: -5px;
  border: 2px solid #6d5133;
  border-radius: 50%;
  z-index: -1;
}
.team-section .team-modern-table .team-avatar::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid #397655;
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
}
.team-section .team-modern-table .team-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
}
.team-section .team-modern-table .team-name {
  font-weight: 700;
  color: #1d1f22;
  margin: 0;
  font-size: 18px;
}
.team-section .team-modern-table .designation-tag {
  background: rgba(109, 81, 51, 0.1);
  color: #6d5133;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
}
.team-section .team-modern-table .team-phone {
  color: #397655;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
.team-section .team-modern-table .team-phone i {
  font-size: 12px;
  width: 25px;
  height: 25px;
  background: #397655;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-section .team-modern-table .team-phone:hover {
  color: #6d5133;
  transform: translateX(5px);
}
.team-section .team-modern-table .team-phone:hover i {
  background: #6d5133;
}

.gallery-page-section {
  background-color: #fdfdfd;
}
.gallery-page-section .gallery-filter-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.gallery-page-section .gallery-filter-wrapper .filter-btn {
  background: transparent;
  border: 2px solid #eee;
  color: #555;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.gallery-page-section .gallery-filter-wrapper .filter-btn:hover, .gallery-page-section .gallery-filter-wrapper .filter-btn.active {
  background: #397655;
  border-color: #397655;
  color: #fff;
  box-shadow: 0 10px 20px rgba(57, 118, 85, 0.2);
}
.gallery-page-section .gallery-card-item .gallery-img-box {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background: #6d5133;
}
.gallery-page-section .gallery-card-item .gallery-img-box img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.22, 1);
}
.gallery-page-section .gallery-card-item .gallery-img-box:hover img {
  transform: scale(1.15);
}
.gallery-page-section .gallery-card-item .gallery-img-box:hover .gallery-info-overlay {
  opacity: 1;
}
.gallery-page-section .gallery-card-item .gallery-img-box:hover .gallery-info-overlay .overlay-inner {
  transform: translateY(0);
}
.gallery-page-section .gallery-card-item .gallery-img-box:hover .gallery-info-overlay .zoom-icon {
  opacity: 1;
  top: -180px;
}

.contact-page-section {
  background-color: #f8fbf9;
}
.contact-page-section .contact-main-wrapper {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}
.contact-page-section .contact-info-side {
  background: #397655;
  padding: 60px;
  height: 100%;
  color: #fff;
  position: relative;
}
.contact-page-section .contact-info-side::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100% 0 0 0;
}
.contact-page-section .contact-info-side h2 {
  font-weight: 800;
  font-size: 36px;
  margin-bottom: 20px;
}
.contact-page-section .contact-info-side h2 span {
  color: #d4c4b5;
}
.contact-page-section .contact-info-side p {
  color: rgba(255, 255, 255, 0.8);
}
.contact-page-section .contact-info-side .info-items-list {
  margin-top: 40px;
}
.contact-page-section .contact-info-side .info-items-list .info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.contact-page-section .contact-info-side .info-items-list .info-item .info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #d4c4b5;
}
.contact-page-section .contact-info-side .info-items-list .info-item .info-text h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.contact-page-section .contact-info-side .info-items-list .info-item .info-text p {
  font-size: 14px;
  margin: 0;
}
.contact-page-section .contact-info-side .contact-socials {
  margin-top: 50px;
}
.contact-page-section .contact-info-side .contact-socials h6 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: #d4c4b5;
}
.contact-page-section .contact-info-side .contact-socials .social-icons {
  display: flex;
  gap: 15px;
}
.contact-page-section .contact-info-side .contact-socials .social-icons a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}
.contact-page-section .contact-info-side .contact-socials .social-icons a:hover {
  background: #6d5133;
  border-color: #6d5133;
  transform: translateY(-3px);
}
.contact-page-section .contact-form-side {
  padding: 60px;
}
.contact-page-section .contact-form-side .form-title {
  font-weight: 800;
  margin-bottom: 40px;
  color: #1d1f22;
}
.contact-page-section .contact-form-side .form-title span {
  color: #397655;
}
.contact-page-section .contact-form-side label {
  font-weight: 700;
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
}
.contact-page-section .contact-form-side .form-control {
  background: #fdfdfd;
  border: 1px solid #eee;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 15px;
  transition: 0.3s;
}
.contact-page-section .contact-form-side .form-control:focus {
  border-color: #397655;
  box-shadow: 0 5px 15px rgba(57, 118, 85, 0.05);
  background: #fff;
}
.contact-page-section .contact-form-side .submit-btn {
  background: #6d5133;
  color: #fff;
  border: none;
  padding: 18px 40px;
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-page-section .contact-form-side .submit-btn:hover {
  background: #397655;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(57, 118, 85, 0.2);
}

.donate-page-wrapper {
  background-color: #f8fbf9;
}
.donate-page-wrapper .donation-hub-card {
  background: #fff;
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f1f1;
}
.donate-page-wrapper .donation-hub-card .hub-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid #eee;
  padding-bottom: 25px;
}
.donate-page-wrapper .donation-hub-card .hub-header i {
  font-size: 40px;
  color: #397655;
}
.donate-page-wrapper .donation-hub-card .hub-header h3 {
  font-weight: 800;
  color: #1d1f22;
  margin: 0;
}
.donate-page-wrapper .donation-hub-card .hub-header p {
  margin: 0;
  color: #666;
  font-size: 14px;
}
.donate-page-wrapper .bank-info-item {
  margin-bottom: 25px;
}
.donate-page-wrapper .bank-info-item label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6d5133;
  font-weight: 700;
  margin-bottom: 8px;
}
.donate-page-wrapper .bank-info-item .info-value {
  font-size: 18px;
  font-weight: 600;
  color: #1d1f22;
}
.donate-page-wrapper .bank-info-item .info-value.highlight {
  color: #397655;
  font-family: "Courier New", Courier, monospace;
  font-size: 22px;
}
.donate-page-wrapper .bank-info-item .info-value-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f9f9f9;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid #eee;
}
.donate-page-wrapper .bank-info-item .copy-btn {
  background: #6d5133;
  color: #fff;
  border: none;
  padding: 5px 15px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.donate-page-wrapper .bank-info-item .copy-btn:hover {
  background: #397655;
}
.donate-page-wrapper .full-address-note {
  background: rgba(57, 118, 85, 0.05);
  padding: 20px;
  border-radius: 15px;
  font-size: 14px;
  color: #444;
}
.donate-page-wrapper .full-address-note i {
  color: #397655;
  margin-right: 10px;
}
.donate-page-wrapper .qr-sticky-card {
  background: #fff;
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 100px;
  border: 1px solid rgba(57, 118, 85, 0.1019607843);
}
.donate-page-wrapper .qr-sticky-card .qr-header {
  text-align: center;
  margin-bottom: 25px;
}
.donate-page-wrapper .qr-sticky-card .qr-header h4 {
  font-weight: 800;
  color: #1d1f22;
}
.donate-page-wrapper .qr-sticky-card .qr-header p {
  font-size: 13px;
  color: #666;
}
.donate-page-wrapper .qr-sticky-card .qr-container {
  position: relative;
  padding: 15px;
  border: 2px solid #f1f1f1;
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}
.donate-page-wrapper .qr-sticky-card .qr-container .scanner-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #397655;
  box-shadow: 0 0 15px #397655;
  animation: qrScan 3s infinite linear;
}
.donate-page-wrapper .qr-sticky-card .tax-exemption-badge {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: #6d5133;
  color: #fff;
  padding: 20px;
  border-radius: 20px;
}
.donate-page-wrapper .qr-sticky-card .tax-exemption-badge i {
  font-size: 24px;
  color: #d4c4b5;
}
.donate-page-wrapper .qr-sticky-card .tax-exemption-badge strong {
  display: block;
  font-size: 16px;
}
.donate-page-wrapper .qr-sticky-card .tax-exemption-badge p {
  font-size: 11px;
  margin: 0;
  opacity: 0.8;
  color: #fff;
}
.donate-page-wrapper .step-box {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #eee;
  height: 100%;
}
.donate-page-wrapper .step-box span {
  display: block;
  font-size: 24px;
  font-weight: 900;
  color: rgba(57, 118, 85, 0.1);
  margin-bottom: 10px;
}
.donate-page-wrapper .step-box p {
  font-size: 14px;
  color: #555;
  margin: 0;
  font-weight: 600;
}

@keyframes qrScan {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}
@media (max-width: 991px) {
  .founder-vision .vision-image-wrapper {
    margin-bottom: 60px;
    padding-right: 0;
  }
  .founder-vision .vision-content {
    padding-left: 0;
  }
  .founder-vision .founder-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .contact-page-section .contact-info-side, .contact-page-section .contact-form-side {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .breadcrumb-section {
    padding: 120px 0 80px;
  }
  .breadcrumb-section .page-title {
    font-size: 36px;
  }
  .breadcrumb-section .breadcrumb-list {
    padding: 8px 20px;
  }
  .breadcrumb-section .breadcrumb-list .breadcrumb-item {
    font-size: 13px;
  }
  .premium-hero-slider .hero-content-box {
    text-align: center;
  }
  .premium-hero-slider .hero-actions {
    justify-content: center;
    flex-direction: column;
  }
  .premium-hero-slider .hero-scroll-indicator {
    display: none;
  }
  .member-list-section .table-header-wrapper {
    text-align: center;
  }
  .member-list-section .table-header-wrapper .search-container {
    margin-top: 20px;
  }
  .member-list-section .table-footer-info {
    flex-direction: column;
    gap: 20px;
  }
  .team-modern-table thead {
    display: none;
  }
  .team-modern-table tbody tr td {
    display: block;
    text-align: center;
    padding: 10px;
    border: none;
  }
  .team-modern-table tbody tr td:first-child {
    background: #f9f9f9;
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */