:root {
  --primary: #0b3d91;
  --primary-dark: #072f70;

  --secondary: #1f9d3a;
  --secondary-dark: #17752b;

  --accent: #f57c00;

  --white: #fff;

  --light: #f8fafc;

  --dark: #1f2937;

  --text: #6b7280;

  --border: #e5e7eb;

  --radius: 18px;

  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #fff;
  color: var(--dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.hindi {
  font-family: "Noto Sans Devanagari", sans-serif;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1320px;
}

/* top bar section styling starts from here */
.top-bar {
  background: var(--primary);

  color: #fff;

  font-size: 14px;

  padding: 10px 0;
}

.top-left {
  display: flex;

  gap: 30px;
}

.top-left a {
  color: #fff;
}

.top-left i {
  margin-right: 8px;
}

.top-right {
  display: flex;

  gap: 18px;
}

.top-right a {
  color: #fff;

  transition: 0.3s;
}

.top-right a:hover {
  color: var(--accent);
}

/* navbar */
.navbar {
  background: #fff;
  padding: 14px 0;
  transition: 0.35s;
  z-index: 999;
}

.navbar-brand img {
  height: 60px;
}

.nav-link {
  font-family: "Poppins";
  font-weight: 500;
  color: var(--dark);
  margin: 0 14px;
  transition: 0.3s;
}

.nav-link:hover {
  color: var(--primary);
}

.navbar-toggler {
  border: none;
  box-shadow: none !important;
  font-size: 28px;
  color: var(--primary);
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.dropdown-menu {
  border: none;
  border-radius: 15px;
  box-shadow: var(--shadow);
  padding: 12px;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.35s ease;
  border: none;
  border-radius: 15px;
  box-shadow: var(--shadow);
  padding: 10px;
  margin-top: 0;
  min-width: 240px;
}

/* Desktop Only */

@media (min-width: 992px) {
  .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.3s ease;
  }

  .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.dropdown-item {
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 500;
  transition: 0.3s;
}

.dropdown-item:hover {
  background: var(--primary);
  color: #fff;
  padding-left: 24px;
}

.dropdown-toggle::after {
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* donate now button */
.donate-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #ff9a1f);
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(245, 124, 0, 0.3);
}

/* Shine Effect */
.donate-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  transform: skewX(-25deg);
  transition: 0.7s;
}

.donate-btn:hover::before {
  left: 150%;
}

.dropdown-item i {
  width: 20px;
  font-size: 16px;
}

/* Text */
.donate-btn span {
  position: relative;
  z-index: 2;
}

/* Arrow */
.donate-btn i {
  position: relative;
  z-index: 2;
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* Hover */
.donate-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(245, 124, 0, 0.4);
}

.donate-btn:hover i {
  transform: translateX(6px);
}

.donate-btn:active {
  transform: scale(0.97);
}

.donate-btn {
  animation: donatePulse 2.5s infinite;
}

@keyframes donatePulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }

  100% {
    transform: scale(1);
  }
}

/* Sticky */
.navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: slideDown 0.4s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

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

  to {
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .navbar {
    padding: 12px 0;
  }

  .navbar-collapse {
    background: #fff;
    margin-top: 15px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .navbar-nav {
    align-items: flex-start !important;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    margin: 0;

    padding: 14px 0 !important;

    width: 100%;
  }

  .dropdown-menu {
    position: static !important;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-left: 3px solid var(--primary);
    border-radius: 0;
    background: #f8f9fa;
    margin-left: 10px;
    padding: 8px 0;
  }

  .dropdown-menu.show {
    display: block;
  }

  .donate-btn {
    width: 100%;

    justify-content: center;

    margin-top: 20px;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #fff;
    margin-top: 15px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .navbar-nav {
    align-items: flex-start !important;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    margin: 0;
    padding: 14px 0 !important;
  }

  /* IMPORTANT */

  .dropdown-menu {
    position: static !important;
    display: none;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none;
    border: none;
    background: #f8f9fa;
    padding-left: 15px;
    margin-top: 0;
  }

  .dropdown-menu.show {
    display: block;
  }

  .donate-btn {
    width: 100%;

    justify-content: center;

    margin-top: 20px;
  }
}

/* hero section styling starts from here  */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.heroSwiper {
  width: 100%;
  height: 100%;
}

.heroSwiper img {
  width: 100%;

  height: 100vh;

  object-fit: cover;
}

.hero-overlay {
  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.55);

  z-index: 2;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content .container {
  max-width: 900px;
}

.hero-badge {
  display: inline-block;

  background: rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(10px);
  color: #fff;
  padding: 10px 12px;
  border-radius: 50px;
  font-weight: 500;
  margin-bottom: 25px;
}

.hero h1 {
  font-size: 60px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  color: #fff;
  font-size: 18px;
  margin: 30px auto;
  max-width: 700px;
}

.hero-btns {
  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;
}

.swiper-button-next,
.swiper-button-prev {
  width: 55px;

  height: 55px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(10px);

  color: #fff;

  transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;

  font-weight: bold;
}

.swiper-pagination-bullet {
  width: 12px;

  height: 12px;

  background: #fff;

  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  opacity: 1;

  background: var(--accent);
}

@media (max-width: 991px) {
  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .hero {
    height: 90vh;
  }

  .heroSwiper img {
    height: 90vh;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    width: 100%;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

/* ===========================
   HERO BUTTONS
=========================== */

.hero-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Primary Button */

.btn-primary-custom {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--accent), #ff9d1c);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 12px 30px rgba(255, 140, 0, 0.35);
}

/* Shine Effect */

.btn-primary-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  transform: skewX(-25deg);
  transition: 0.7s;
}

.btn-primary-custom:hover::before {
  left: 150%;
}

.btn-primary-custom:hover {
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(255, 140, 0, 0.45);
}

.btn-primary-custom i {
  transition: 0.3s;
}

.btn-primary-custom:hover i {
  transform: translateX(6px);
}

/* Outline Button */

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.35s;
  backdrop-filter: blur(10px);
}

.btn-outline-custom:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .hero-btns {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 15px 25px;
  }
}
/* ends here */

/* about section styling starts from here */
.about-section {
  background: #f8fbff;
}

.section-badge {
  display: inline-block;
  background: rgba(11, 61, 145, 0.08);
  color: var(--primary);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--dark);
}

.section-title span {
  color: var(--primary);
}

.section-description {
  max-width: 850px;
  margin: auto;
  color: var(--text);
  font-size: 18px;
  line-height: 1.9;
}

.about-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 35px;
  transition: 0.35s;
}

.about-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 18px 35px rgba(11, 61, 145, 0.08);
}

.about-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(11, 61, 145, 0.08);
  color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  margin: 0 auto 25px;
}

.about-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

.about-card p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .section-title {
    font-size: 38px;
  }
}

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

  .section-description {
    font-size: 16px;
  }

  .about-card {
    padding: 30px 25px;
  }
}
/* ends here */

/* footer section styling starts from here */
.footer {
  background: #072f70;

  color: #fff;

  padding: 50px 0 25px;
}

.footer-logo {
  width: 230px;

  margin-bottom: 20px;
}

.footer-text {
  color: #d7dff1;

  line-height: 1.8;

  margin-bottom: 25px;
}

.footer h5 {
  margin-bottom: 25px;

  font-weight: 700;

  position: relative;
}

.footer h5::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -10px;

  width: 45px;

  height: 3px;

  background: var(--accent);
}

.footer ul {
  list-style: none;

  padding: 0;

  margin: 0;
}

.footer ul li {
  margin-bottom: 14px;
}

.footer ul li a {
  color: #d7dff1;

  transition: 0.3s;
}

.footer ul li a:hover {
  color: #fff;

  padding-left: 8px;
}

.footer-contact li {
  display: flex;

  gap: 12px;

  align-items: flex-start;
}

.footer-contact i {
  color: var(--accent);

  margin-top: 4px;
}

.footer-social {
  display: flex;

  gap: 15px;
}

.footer-social a {
  width: 42px;

  height: 42px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.12);

  display: flex;

  justify-content: center;

  align-items: center;

  color: #fff;

  transition: 0.3s;
}

.footer-social a:hover {
  background: var(--accent);

  transform: translateY(-5px);
}

.newsletter {
  display: flex;

  margin-top: 20px;
}

.newsletter input {
  flex: 1;

  border: none;

  outline: none;

  padding: 14px 18px;

  border-radius: 50px 0 0 50px;
}

.newsletter button {
  width: 60px;

  border: none;

  background: var(--accent);

  color: #fff;

  border-radius: 0 50px 50px 0;
}

.footer hr {
  margin: 55px 0 25px;

  opacity: 0.15;
}

.footer-bottom {
  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: 15px;
}

.footer-bottom p {
  margin: 0;

  color: #d7dff1;
}

.footer-bottom a {
  color: #d7dff1;

  margin: 0 10px;
}

.footer-bottom a:hover {
  color: #fff;
}

@media (max-width: 991px) {
  .footer {
    text-align: center;
  }

  .footer h5::after {
    left: 50%;

    transform: translateX(-50%);
  }

  .footer-contact li {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    justify-content: center;
  }
}

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

  .newsletter input {
    border-radius: 50px;

    margin-bottom: 12px;
  }

  .newsletter button {
    width: 100%;

    border-radius: 50px;

    padding: 14px;
  }
}

/*=========================
PAYMENT METHODS
=========================*/

.payment-methods {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 20px;
}

.payment-card {
  width: 72px;
  height: 52px;

  background: #fff;

  border: 1px solid #e6e6e6;

  border-radius: 12px;

  display: flex;

  justify-content: center;

  align-items: center;

  transition: 0.3s;
}

.payment-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.payment-card img {
  max-width: 42px;

  max-height: 24px;
}

.payment-card i {
  color: var(--accent);

  font-size: 20px;
}

/*=========================
MAP
=========================*/
.footer-map {
  margin-top: 20px;
}

.map-card {
  position: relative;

  overflow: hidden;

  border-radius: 18px;

  margin-top: 20px;
}

.map-card iframe {
  width: 100%;

  height: 230px;

  border: 0;

  display: block;
}

.map-btn {
  position: absolute;

  top: 15px;

  left: 15px;

  background: #fff;

  color: var(--primary);

  padding: 12px 18px;

  border-radius: 12px;

  font-weight: 600;

  display: flex;

  align-items: center;

  gap: 8px;

  transition: 0.3s;
}

.map-btn:hover {
  background: var(--primary);

  color: #fff;
}

@media (max-width: 768px) {
  .payment-methods {
    justify-content: center;
  }

  .map-card iframe {
    height: 200px;
  }
}
/* ends here */

/* explore causes section starts from here  */
/*==================================================
 EXPLORE CAUSES
==================================================*/

.causes {
  padding: 100px 0;
  background: #f8fbff;
}

/*==========================
SECTION TITLE
==========================*/

.section-title {
  max-width: 800px;
  margin: 0 auto 70px;
}

.section-tag {
  display: inline-block;
  background: rgba(11, 61, 145, 0.08);
  color: var(--primary);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
}

.section-title h2 {
  font-size: 52px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
}

.section-title h2 span {
  color: var(--accent);
}

.section-title p {
  font-size: 18px;
  line-height: 1.8;
  color: #6b7280;
  max-width: 720px;
  margin: auto;
}

/*==========================
CARD
==========================*/

.cause-card {
  background: #fff;

  border-radius: 24px;

  overflow: hidden;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);

  transition: 0.35s;

  /* height: 100%; */

  display: flex;

  flex-direction: column;
}

.cause-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/*==========================
IMAGE
==========================*/

.cause-image {
  position: relative;

  height: 250px;

  overflow: hidden;
}

.cause-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.5s;
}

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

.cause-badge {
  position: absolute;

  left: 20px;

  bottom: 20px;

  background: #fff;

  color: var(--primary);

  padding: 10px 18px;

  border-radius: 12px;

  font-weight: 600;

  font-size: 15px;
}

/*==========================
BODY
==========================*/

.cause-body {
  padding: 20px;
}

.cause-body h4 {
  font-size: 20px;
  color: #1f2937;
}

.cause-body p {
  color: #6b7280;

  margin-bottom: 15px;

  line-height: 1.7;
}

/*==========================
META
==========================*/

.cause-meta {
  display: flex;

  justify-content: space-between;

  font-size: 14px;

  color: #888;

  margin-bottom: 18px;
}

/*==========================
PROGRESS
==========================*/

.progress {
  height: 8px;

  border-radius: 30px;

  overflow: hidden;

  background: #ececec;
}

.progress-bar {
  background: var(--primary);
}

/*==========================
FOOTER
==========================*/

.cause-footer {
  display: flex;

  justify-content: space-between;

  align-items: center;

  min-height: 58px;

  transition: 0.35s;
}

.cause-footer strong {
  display: block;

  font-size: 24px;

  color: #1f2937;
}

.cause-footer span {
  color: #7b7b7b;

  font-size: 14px;
}

/*==========================
BUTTON
==========================*/

.cause-donate-btn {
  width: 100%;

  display: flex;

  justify-content: center;

  align-items: center;

  padding: 16px;

  border-radius: 50px;

  background: var(--primary);

  color: #fff;

  font-size: 18px;

  font-weight: 600;

  text-decoration: none;

  opacity: 0;

  max-height: 0;

  overflow: hidden;

  transform: translateY(20px);

  transition: all 0.35s ease;
}

.cause-donate-btn:hover {
  background: var(--accent);

  color: #fff;
}

/*==========================
HOVER
==========================*/

.cause-card:hover .cause-footer {
  opacity: 0;

  max-height: 0;

  margin-top: 0;

  overflow: hidden;
}

.cause-card:hover .cause-donate-btn {
  opacity: 1;

  max-height: 80px;

  transform: translateY(0);
}

.raised {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.raised strong {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.raised span {
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
}

.donors {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 4px;
}

.donors strong {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.donors span {
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
}

/*==========================
RESPONSIVE
==========================*/

@media (max-width: 991px) {
  .section-title h2 {
    font-size: 40px;
  }

  .cause-image {
    height: 220px;
  }

  .cause-body {
    padding: 22px;
  }
}

@media (max-width: 768px) {
  .section-title {
    margin-bottom: 50px;
  }

  .section-title h2 {
    font-size: 34px;
  }

  .section-title p {
    font-size: 16px;
  }

  .cause-body h4 {
    font-size: 24px;
  }

  .cause-footer strong {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .section-title h2 {
    font-size: 30px;
  }

  .section-title p {
    font-size: 15px;
  }

  .cause-image {
    height: 210px;
  }

  .cause-body {
    padding: 20px;
  }

  .cause-meta {
    flex-direction: column;

    gap: 6px;
  }
}

/* impact section starts from here */
/*============================
OUR IMPACT
============================*/

.impact {
  padding: 50px 0;

  background: linear-gradient(135deg, #0b2f6b, #0f1d47);
}

.impact-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  text-align: center;
  padding: 30px 25px;
  transition: 0.4s;
  height: 100%;
}

.impact-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
}

.impact-card i {
  font-size: 35px;
  color: #ff8a00;
  margin-bottom: 20px;
}

.impact-card h2 {
  color: #fff;

  font-size: 50px;

  font-weight: 800;

  margin-bottom: 12px;
}

.impact-card p {
  color: rgba(255, 255, 255, 0.85);

  margin: 0;

  font-size: 16px;
}

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

  .impact-card {
    padding: 35px 20px;
  }

  .impact-card h2 {
    font-size: 42px;
  }
}
/* ends here */

/* testimonials section styling starts from here */
/*=====================================
TESTIMONIALS
======================================*/

.testimonials {
  padding: 100px 0;

  background: #f8fbff;
}

.testimonial-card {
  background: #fff;

  border-radius: 24px;

  padding: 35px;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);

  transition: 0.35s;

  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.quote-icon {
  width: 65px;

  height: 65px;

  background: rgba(255, 140, 0, 0.12);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 25px;
}

.quote-icon i {
  color: var(--accent);

  font-size: 28px;
}

.testimonial-card p {
  color: #6b7280;

  line-height: 1.8;

  margin-bottom: 25px;
}

.stars {
  color: #ffc107;

  margin-bottom: 25px;
}

.testimonial-user {
  display: flex;

  align-items: center;

  gap: 15px;
}

.testimonial-user img {
  width: 70px;

  height: 70px;

  border-radius: 50%;

  object-fit: cover;
}

.testimonial-user h5 {
  margin: 0;

  font-size: 20px;

  color: #1f2937;
}

.testimonial-user span {
  color: #6b7280;
}

.testimonialSwiper {
  padding-bottom: 60px;
}

.testimonialSwiper .swiper-pagination-bullet {
  width: 12px;

  height: 12px;

  background: #d1d5db;

  opacity: 1;
}

.testimonialSwiper .swiper-pagination-bullet-active {
  background: var(--accent);
}

@media (max-width: 991px) {
  .testimonials {
    padding: 80px 0;
  }
}

@media (max-width: 576px) {
  .testimonial-card {
    padding: 25px;
  }

  .testimonial-user img {
    width: 60px;

    height: 60px;
  }

  .testimonial-user h5 {
    font-size: 18px;
  }
}
/* ends here */

/* cta section starts from here */
.contact-section {
  padding: 40px 0;
  background: #f8fbff;
}

.contact-info-card,
.contact-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-info-card h3,
.contact-form-card h3 {
  font-size: 32px;

  margin-bottom: 35px;

  color: var(--primary);

  font-weight: 700;
}

.contact-item {
  display: flex;

  gap: 20px;

  margin-bottom: 30px;
}

.contact-icon {
  width: 65px;

  height: 65px;

  flex-shrink: 0;

  background: rgba(10, 63, 145, 0.08);

  color: var(--accent);

  border-radius: 18px;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 24px;
}

.contact-item h6 {
  margin-bottom: 6px;

  font-size: 18px;
}

.contact-item p {
  margin: 0;

  color: #6b7280;
}

.form-control {
  height: 58px;
  border-radius: 15px;
  border: 1px solid #dfe6ef;
  box-shadow: none;
  padding: 0 18px;
}

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

.form-control:focus {
  border-color: var(--primary);
  box-shadow: none;
}

.send-btn {
  width: 100%;

  border: none;

  padding: 18px;

  border-radius: 50px;

  background: linear-gradient(90deg, var(--accent));

  color: #fff;

  font-size: 18px;

  font-weight: 600;

  transition: 0.35s;
}

.send-btn:hover {
  transform: translateY(-3px);

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

@media (max-width: 991px) {
  .contact-info-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 80px 0;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 28px;
  }

  .contact-info-card h3,
  .contact-form-card h3 {
    font-size: 26px;
  }

  .contact-item {
    gap: 15px;
  }

  .contact-icon {
    width: 55px;

    height: 55px;

    font-size: 20px;
  }

  .send-btn {
    padding: 16px;
  }
}
/* ends here */

/*====================================
DIRECT DONATION
====================================*/

.direct-donation {
  padding: 40px 0;

  background: #f8fbff;
}

.qr-card,
.bank-card {
  background: #fff;

  border-radius: 20px;

  padding: 30px;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);

  height: 100%;
}

.qr-card {
  text-align: center;
}

.qr-card h4 {
  font-size: 26px;

  margin-bottom: 25px;

  font-weight: 700;
}

.qr-card img {
  width: 220px;

  max-width: 100%;

  border: 8px solid #f5f5f5;

  border-radius: 16px;
}

.payment-icons {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 25px;
}

.payment-icons span {
  background: #eef5ff;

  color: var(--primary);

  padding: 8px 14px;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 600;
}

.bank-title {
  margin-bottom: 25px;
}

.bank-title h3 {
  font-size: 28px;

  font-weight: 700;
}

.bank-title i {
  color: var(--primary);

  margin-right: 10px;
}

.bank-info {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 22px;
}

.bank-info span {
  display: block;

  color: #6b7280;

  margin-bottom: 5px;
}

.bank-info strong {
  font-size: 17px;

  color: #222;
}

.bank-actions {
  display: flex;

  gap: 15px;

  margin-top: 30px;
}

.copy-btn,
.download-bank {
  flex: 1;

  border: none;

  text-decoration: none;

  text-align: center;

  padding: 14px;

  border-radius: 50px;

  font-weight: 600;

  transition: 0.3s;
}

.copy-btn {
  background: var(--primary);

  color: #fff;
}

.download-bank {
  background: #eef5ff;

  color: var(--primary);
}

.copy-btn:hover {
  background: var(--accent);
}

.download-bank:hover {
  background: var(--primary);

  color: #fff;
}

.trust-badges {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 30px;
}

.trust-badges span {
  background: #f4f8ff;

  color: var(--primary);

  padding: 10px 16px;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 600;
}

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

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

  .qr-card,
  .bank-card {
    padding: 22px;
  }

  .bank-actions {
    flex-direction: column;
  }

  .bank-title h3 {
    font-size: 24px;
  }

  .qr-card img {
    width: 180px;
  }
}

.footer-policy-links {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 12px;

  flex-wrap: wrap;
}

.footer-policy-links a {
  color: #fff;

  text-decoration: none;

  transition: 0.3s;
}

.footer-policy-links a:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .footer-bottom {
    text-align: center;
  }

  .footer-policy-links {
    margin-top: 15px;

    gap: 8px;
  }

  .footer-policy-links span {
    display: none;
  }
}
