/* HEADER-SECTION */
.header-sec {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-sec .hd-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.header-sec .logo img {
  max-width: 160px;
  transition: 0.3s ease;
}

.header-sec .logo img:hover {
  transform: scale(1.05);
}

.main-menu .menu {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu .menu li a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 16px;
  padding: 6px 0;
  position: relative;
  transition: 0.3s ease;
}
.main-menu .menu li a:hover {
  color: var(--color-secondary);
}

.main-menu .menu li a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #0076c0, #43b02a);
  border-radius: 50px;
  transition: width 0.3s ease;
}

.main-menu .menu li a:hover::after {
  width: 100%;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu span {
  width: 28px;
  height: 3px;
  background: #222;
  border-radius: 5px;
  transition: 0.4s;
}
.close-menu {
  display: none;   
}


.mobile-menu.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.header-sec button {
  padding: 12px 30px;
  background: linear-gradient(90deg, #0076c0, #43b02a);
  box-shadow: 0 4px 12px rgba(0, 118, 192, 0.3);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.header-sec button:hover {
  box-shadow: 0 6px 16px rgba(67, 176, 42, 0.4);
  transform: translateY(-2px);
}

/*HERO-SECTION */
.hero-sec {
  padding: 60px 0px;
  background: linear-gradient(90deg, #0072ce0d 0%, #5bbf210d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img img {
  width: 100%;
  max-width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 30px rgba(18, 18, 18, 0.08);
  border: 8px solid #fbf7f2;
  margin-left: 120px;
}

.hero-text img {
  width: 100%;
  max-width: 600px;
  height: auto;
}

.hero-content {
  padding: 80px 0px;
}

.hero-text {
  text-align: center;
}

.hero-button {
  text-align: center;
}

.hero-button button {
  margin-top: 10px;
  background: linear-gradient(90deg, #f64b4b, #e945a3, #9b4df0);
  color: white;
  font-weight: 600;
  padding: 12px 20px;
  border: none;
  font-size: 16px;
  margin-left: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.hero-button button i {
  margin-right: 6px;
}

/* DONERS-SECTION */
.donor-sec {
  padding: 40px 0px;
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.stat-card {
  background-image: url("../asset/images/button-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  border-radius: 25px;
  color: #fff;
  font-size: 16px;
  padding: 24px;
  text-align: center;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3ms ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.stat-card h4 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 24px;
  color: var(--color-bg) !important;
  font-weight: 700;
}

.inner-title {
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.donor-box {
  background-color: #00a8a229;
  padding: 12px 16px;
  border-radius: 10px;

  border-left: 5px solid var(--color-primary);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.medal-img img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.donor-details {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
}

.donor-details h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

.donor-details p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.donate-amount {
  font-weight: 700;
  color: var(--color-secondary);
  font-size: 16px;
  background: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-left: auto;
}
/* ABOUTUS SEC */
.about-sec {
  padding: 60px 0;
  background-color: #e6f7f7;
}

.about-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 30px auto;
  padding: 0 20px;
}
.about-content span{
  color: var(--color-secondary);
  font-size: 18px;
  font-weight: 500;
}
.about-content h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 10px;
  position: relative;
}


.about-content p {
  color: #333;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.about-info {
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.about-info p {
  margin: 5px 0;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 500;
}

/* PAYMENT-PAGE */
.payment-sec {
  padding: 20px 0px;
}

.breadcrumb-sec {
  /* margin-top: 30px; */
  background: rgba(171, 196, 214, 0.7);
  padding: 20px;
}

.breadcrumb a {
  color: var(--color-primary);
}

.breadcrumb .divider {
  margin: 0 8px;
  color: var(--color-primary);
}

.breadcrumb .current {
  font-weight: 600;
  color: var(--color-primary);
}

.form-container form .required {
  color: var(--color-primary);
  margin-left: 2px;
}

.form-container {
  max-width: 500px;
  margin: auto;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--color-primary);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-container label {
  display: block;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-container input,
.form-container select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
  color: #666;
  margin-bottom: 18px;
  background-color: #fff;
}

.form-container input:focus,
.form-container select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 118, 192, 0.15);
}

.form-container button {
  width: 100%;
  padding: 12px 10px;
  background: linear-gradient(90deg, #0076c0, #43b02a);
  box-shadow: 0 4px 12px rgba(0, 118, 192, 0.3);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  margin-top: 30px;
  cursor: pointer;
}

.form-container button:hover {
  box-shadow: 0 6px 16px rgba(67, 176, 42, 0.4);
  transform: translateY(-2px);
}

form input::placeholder {
  color: #666 !important;
}

.input:focus,
input:valid {
  outline: none;
  border: 1.5px solid #1a73e8;
}

.input:focus ~ label,
input:valid ~ label {
  transform: translateY(-50%) scale(0.8);
  background-color: #212121;
  padding: 0 0.2em;
  color: #2196f3;
}

.input-group {
  position: relative;
}

.amount-field {
  text-align: center;
  margin-bottom: 20px;
}

.amount-field label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.input-box {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.input-box span {
  font-size: 18px;
  color: var(--color-primary);
  font-weight: 600;
  margin-right: 5px;
}

.input-box input {
  border: none;
  outline: none;
  background: transparent;
  padding: 0px;
  font-size: 16px;
  color: #333;
  width: 100%;
  margin-bottom: 0px;
}

.input-box input:focus {
  border: none;
  outline: none;
  box-shadow: none !important;
}

/* FOOTER-SEC */
.footer-sec {
  background: #f4fbff;
  padding: 25px 0;
  text-align: center;
  width: 100%;
  border-top: 1px solid #d9e9f2;
}

.footer-sec .footer-content p {
  margin: 0;
  color: #005f99;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.footer-sec .footer-content a {
  color: #0071bc;
  font-weight: 600;
  text-decoration: none;
  padding-left: 3px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-sec .footer-content a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: var(--color-secondary);
  transition: width 0.3s ease;
}

.footer-sec .footer-content a:hover::after {
  width: 100%;
}

.footer-sec .footer-content a:hover {
  color: var(--color-secondary);
}
