/*
Theme Name: 	Betheme Child
Theme URI: 		http://themes.muffingroup.com/betheme
Author: 		Muffin group
Author URI: 	http://muffingroup.com
Description:	Child Theme for Betheme - Premium WordPress Theme
Template:		betheme
Version: 		1.6.1
*/

/* Theme customization starts here
-------------------------------------------------------------- */


/* Post */
.post .post-desc h2.entry-title { font-size: 22px; line-height: 30px; }

/* Section shadow */
.section-shadow { -webkit-box-shadow: 0 10px 0 rgba(118, 105, 91, 0.2) inset; box-shadow:  0 10px 0 rgba(118, 105, 91, 0.2) inset; }

@media only screen and (min-width: 1240px) {
.header-stack #Top_bar .logo { margin-bottom: 10px; }
}
  .values-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    padding: 4rem 8%;
  }

  .values-content {
    max-width: 600px;
  }

  .tagline {
    display: inline-block;
    background: #007bff;
    color: #fff;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
  }

  h2 {
    font-size: 2.2rem;
    margin-top: 1rem;
    font-weight: 700;
  }

  h2 span {
    color: #f7931e;
  }

  .values-content p {
    line-height: 1.6;
    margin-top: 1rem;
    font-size: 0.95rem;
  }

  .divider {
    margin: 1.5rem 0;
    border-bottom: 1px solid #ccc;
  }

  .value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 1.5rem 0;
  }

  .value-icon {
    min-width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    color: white;
    font-size: 1.4rem;
  }

  .icon-orange {
    background-color: #f7931e;
  }
  .icon-green {
    background-color: #7bc043;
  }

  .value-item h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
  }

  .value-item p {
    margin: 0.3rem 0 0;
    font-size: 0.9rem;
  }

  .donate-btn {
    display: inline-block;
    margin-top: 2rem;
    background-color: #7bc043;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
  }

  .donate-btn:hover {
    background-color: #5fa334;
  }

  /* Right Side (Images) */
  .values-images {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .orange-bg {
    position: absolute;
    width: 70%;
    height: 70%;
    background: #f7931e;
    border-radius: 50%;
    right: 0;
    bottom: 0;
    z-index: 1;
  }

  .img-large,
  .img-small {
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .img-large {
    position: relative;
    width: 80%;
    z-index: 2;
  }

  .img-small {
    position: absolute;
    top: -40px;
    right: 50px;
    width: 50%;
    z-index: 3;
  }

  /* Responsive Design */
  @media (max-width: 900px) {
    .values-section {
      grid-template-columns: 1fr;
      padding: 2rem;
    }

    .values-images {
      order: -1;
      margin-bottom: 2rem;
    }

    .img-large {
      width: 100%;
    }

    .img-small {
      top: -25px;
      right: 20px;
      width: 60%;
    }
  }
.charity-section {
  background: linear-gradient(135deg, #f6f9ff, #e3f2fd);
  padding: 30px 20px;
  text-align: center;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #0a3d62;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 15px;
  line-height: 1.6;
}

.charity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.charity-card {
  background: linear-gradient(145deg, #ffffff, #e3f2fd);
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.charity-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.charity-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.charity-card:hover img {
  transform: scale(1.05);
}

.charity-card h4 {
  background: linear-gradient(90deg, #003973, #E5E5BE);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  padding: 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Tablet view (<= 1024px) */
@media (max-width: 1024px) {
  .section-title {
    font-size: 24px;
  }
  .section-subtitle {
    max-width: 90%;
  }
}

/* Mobile view (<= 768px) */
@media (max-width: 768px) {
  .charity-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  .section-title {
    font-size: 22px;
  }
  .section-subtitle {
    font-size: 14px;
    margin-bottom: 25px;
  }
  .charity-card img {
    height: 180px;
  }
  .charity-card h4 {
    font-size: 15px;
    padding: 10px 0;
  }
}

/* Small mobile (<= 480px) */
@media (max-width: 480px) {
  .charity-section {
    padding: 5px 1px;
  }
  .section-title {
    font-size: 20px;
    line-height: 1.3;
  }
  .section-subtitle {
    font-size: 13px;
    line-height: 1.5;
  }
  .charity-card {
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .charity-card img {
    height: 160px;
  }
  .charity-card h4 {
    font-size: 14px;
    padding: 8px 0;
  }
}
@media only screen and (max-width: 767px) {
    .section_wrapper, .container, .four.columns .widget-area {
        max-width: 700px !important;
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
}
/*  counter*/
.stats-section {
  width: 100%;
  background: linear-gradient(135deg, #f0faff, #e6f7ff, #d9edff);
  padding: 80px 20px;
  text-align: center;
}

.stats-container {
  max-width: 1100px;
  margin: 0 auto;
}

.stats-title {
  font-size: 28px;
  font-weight: 700;
  color: #0a3d62;
  margin-bottom: 20px;
}

.wave-line {
  width: 160px;
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 8px,
    #00eaff 8px,
    #00eaff 16px
  );
  border-radius: 50px;
  margin: 0 auto 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stat-box {
  background: linear-gradient(145deg, #ffffff, #e3f2fd);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  padding: 40px 20px;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.stat-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #e6f7ff, #ffffff);
}

.stat-box h3 {
  font-size: 42px;
  font-weight: 800;
  color: #002b5b;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 16px;
  font-weight: 500;
  color: #0a3d62;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/*  */

/*  */

/*  counter*/
.stats-section {
  width: 100%;
  background: linear-gradient(135deg, #f0faff, #e6f7ff, #d9edff);
  padding: 80px 20px;
  text-align: center;
}

.stats-container {
  max-width: 1100px;
  margin: 0 auto;
}

.stats-title {
  font-size: 28px;
  font-weight: 700;
  color: #0a3d62;
  margin-bottom: 20px;
}

.wave-line {
  width: 160px;
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 8px,
    #00eaff 8px,
    #00eaff 16px
  );
  border-radius: 50px;
  margin: 0 auto 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stat-box {
  background: linear-gradient(145deg, #ffffff, #e3f2fd);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  padding: 40px 20px;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.stat-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #e6f7ff, #ffffff);
}

.stat-box h3 {
  font-size: 42px;
  font-weight: 800;
  color: #002b5b;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 16px;
  font-weight: 500;
  color: #0a3d62;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/*  */

  .values-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    padding: 4rem 8%;
  }

  .values-content {
    max-width: 600px;
  }

  .tagline {
    display: inline-block;
    background: #007bff;
    color: #fff;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
  }

  h2 {
    font-size: 2.2rem;
    margin-top: 1rem;
    font-weight: 700;
  }

  h2 span {
    color: #f7931e;
  }

  .values-content p {
    line-height: 1.6;
    margin-top: 1rem;
    font-size: 0.95rem;
  }

  .divider {
    margin: 1.5rem 0;
    border-bottom: 1px solid #ccc;
  }

  .value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 1.5rem 0;
  }

  .value-icon {
    min-width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    color: white;
    font-size: 1.4rem;
  }

  .icon-orange {
    background-color: #f7931e;
  }
  .icon-green {
    background-color: #7bc043;
  }

  .value-item h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
  }

  .value-item p {
    margin: 0.3rem 0 0;
    font-size: 0.9rem;
  }

  .donate-btn {
    display: inline-block;
    margin-top: 2rem;
    background-color: #7bc043;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
  }

  .donate-btn:hover {
    background-color: #5fa334;
  }

  /* Right Side (Images) */
  .values-images {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .orange-bg {
    position: absolute;
    width: 70%;
    height: 70%;
    background: #f7931e;
    border-radius: 50%;
    right: 0;
    bottom: 0;
    z-index: 1;
  }

  .img-large,
  .img-small {
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .img-large {
    position: relative;
    width: 80%;
    z-index: 2;
  }

  .img-small {
    position: absolute;
    top: -40px;
    right: 50px;
    width: 50%;
    z-index: 3;
  }

  /* Responsive Design */
  @media (max-width: 900px) {
    .values-section {
      grid-template-columns: 1fr;
      padding: 2rem;
    }

    .values-images {
      order: -1;
      margin-bottom: 2rem;
    }

    .img-large {
      width: 100%;
    }

    .img-small {
      top: -25px;
      right: 20px;
      width: 60%;
    }
  }
.header-magazine #Top_bar .banner_wrapper {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 468px;
    height: 60px;
    text-align: right;
    z-index: 2;
}
#Top_bar .banner_wrapper {
    display: blink!important;
}