@charset "utf-8";
/* CSS Document */
a:focus, a:active {
    outline: none;
}
.hero {
  position: relative;
  width: 100%;
  background-image: url('/wp-content/themes/chpw/images/hero-ah_welcome-1600px.webp');
  background-size: contain; /* Ensures full image is visible */
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5%;
  box-sizing: border-box;
  min-height: 400px; /* Optional: can be adjusted or removed */
}
.hero:lang(ar), .hero:lang(fa) {
  background-color: #EBE8E8;
  background-image: url(/wp-content/themes/chpw/images/hero-ah_welcome-1600px_rtl.webp) !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% top;

}
.hero-content {
  width: 55%;
  color: #313131;
  background-color: transparent; /* Transparent background */
}
.hero-content p {
  width: 85%;
  color: #313131;
  background-color: transparent; /* Transparent background */
  font-size: 110%;
  font-family: open-sans, sans-serif;
}
.hero h1 {
  font-size: 2.4rem;
  margin: -8rem 0 .5rem;
  color: #c25624;
}
/*.hero h3 {
  font-size: 1.25rem;
  margin: 0 0 20px;
}*/
.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #c25713;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}
.options-section {
  width: 75%;
  margin: 0 auto;
  padding: 1rem 0;
  text-align: center;
}
.options-section h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #313131;/*#c25624*/
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.button-row a {
  padding: 1rem 0.75rem;
  background-color: #c25713;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: block;
  text-align: left;
  line-height: 1.4;
  position: relative;
  padding-left: 2rem; /* space for the arrow */
  width: auto; /* allow width to adjust to content */
  max-width: 100%; /* prevent overflow */
  white-space: normal; /* allow wrapping */
}
.button-row a:hover {
  background-color: #a3470f;
  transform: scale(1.03); /* subtle zoom effect */
}
.button-row a::before {
  content: "➜";
  position: absolute;
  left: 0.75rem;
  top: 1rem; /* aligns with first line of text */
  transform: rotate(90deg);
  font-size: 1rem;
  line-height: 1.5;
}
.button-row a {
    background-color: #c25713;
    background-color: #F7F7F7;
    color: #c25713;
}
.button-row a:before {
    color: #6F6F6F !important;
}
.button-row a:hover {
color: #c25713;
    background-color: #eae9e9;
}
.button-row a:hover:before {
    color: #282931 !important;
}
/*Four Boxes*/
.feature-section {
  width: 94%;
  margin: 0 auto;
  padding: 3rem 0;
  text-align: center;
}
.feature-section h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #c25624;
}
.feature-section.bgcolor h2 {
  color: #313131;
}
.feature-section h2, .feature-section.bgcolor h2 {
    font-size: 2.25rem;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.feature-box {
  flex: 1 1 22%;
  min-width: 250px;
  max-width: 300px;
  background-color: #fff;/*f9f9f9*/
  padding: 2rem 1.5rem;
  padding: 1rem 1.5rem 2rem;  
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.feature-box {
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.09);
}
.feature-box img {
  width: 80px;
  height: 80px;
  margin-bottom: .5rem;
}

/* NEW: circular icon wrapper */
.icon-circle {
  width: 96px;               /* circle size */
  height: 96px;
  border-radius: 50%;
  background-color: #f3f3f3;    /* light grey background */
  display: inline-flex;      /* let it shrink-wrap within text flow */
  align-items: center;       /* vertical center */
  justify-content: center;   /* horizontal center */
  margin: 0 auto 0.75rem;    /* center the circle and add spacing below */
}

/* Keep SVGs scaled nicely within the circle */
.icon-circle img {
  width: 64px;               /* icon size inside the circle */
  height: 64px;
  object-fit: contain;       /* ensure it fits without distortion */
  display: block;
}

.icon-circle-orange img{
      filter: invert(.75) sepia(50) saturate(53) hue-rotate(342deg);
}
.icon-circle-yellow img{
    filter: invert(.76) sepia(10) saturate(35) hue-rotate(335deg);
}
.icon-circle-blue img{
    filter: invert(.72) sepia(5) saturate(50) hue-rotate(165deg);
}

.icon-circle {
background-color: transparent;
width: 100px;
height: 100px;
}

.icon-circle img {
    width: 80px;
    height: 80px;
}

.feature-box h3 {
  font-size: 1.3rem;
  
  color: #313131;
	margin: 0 0 1.3rem 0;
}
.feature-box p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1.5rem;
  text-align: left;
}
.feature-box a {
  display: block; /* makes the link a block element */
  text-align: left; /* aligns text inside the link to the left */
  color: #c25713;
  font-weight: bold;
  transition: color 0.3s ease;
  margin-top: 0.5rem; /* optional spacing */
  text-decoration: underline;
}
.feature-box a:hover {
  color: #a3470f;
  text-decoration: none !important;
}
.feature-section.bgcolor .feature-grid {
margin-bottom: 60px;
}
/*Start - Responsive Box*/
.responsive-box {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ccc;
  border: none;
  padding: 20px 3%;
  box-sizing: border-box;
  width: 80%;
  margin: 25px auto 40px;
}
.text-content {
  flex: 0 0 70%;
  padding-right: 16px;
  box-sizing: border-box;
  text-align: left;
}
.text-content h3 {
  margin: 20px 0 8px;
  font-size: 2rem;
  color: #c25624;
}
.text-content p {
  margin: 0;
  font-size: 1em;
  color: #666;
}
.image-content {
  flex: 0 0 30%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.image-content img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.bgcolor {
  background-color: #f9f9f9;
  background-color: #f2f0ee;
  padding: 20px 3%;
  margin: 20px auto;
}
.bgcolor {
margin-top: 80px;
}
.bgcolor.lt-blue {
background-color: #c4e8f6;
}
.bewell-faqs {
  width: 70%;
  margin: 50px auto 10px;
}
.bewell-faqs h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #c25624;
  text-align: center;
}
.linkonbanner {
  display: block; /* makes the link a block element */
  text-align: left; /* aligns text inside the link to the left */
  color: #c25713 !important;
  font-weight: bold;
  transition: color 0.3s ease;
  margin-top: 0.5rem; /* optional spacing */
  text-decoration: underline !important;
}
.linkonbanner:hover {
  color: #a3470f;
  text-decoration: none !important;
}

.responsive-box {
border-radius: 25px;
}
.responsive-box.drk-org {
background-color: #c25624;
}
.responsive-box.drk-org .text-content p,.responsive-box.drk-org .text-content h3  {
color: #fff;
}
.responsive-box.drk-org .text-content a.linkonbanner {
color: #fff!important;
}
.responsive-box.drk-blue {
background-color: #003A60;
}
.responsive-box.drk-blue .text-content p,.responsive-box.drk-blue .text-content h3  {
color: #fff;
}
.responsive-box.drk-blue .text-content a.linkonbanner {
color: #fff!important;
}

.featurebox-generic p {
    height: auto;
    padding-bottom: 12px;
}
.rewardsdisclaimer {
	margin-top: 35px !important;
	font-style: italic;
}
@media (max-width: 1200px) {
  .options-section {
    margin-top: -100px;
  }
}
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.0rem;
  }
  .hero-content {
    width: 55%;
  }
  .hero-content p {
    width: 90%;
  }
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    background-size: contain;
    background-position: top center;
    padding: 0;
  }
  .hero-content {
    width: 90%;
    padding: 1.5rem;
    margin-top: auto;
    text-align: center;
  }
  .hero h2 {
    font-size: 2rem;
    margin: -10rem 0 .5rem;
  }
  .hero-content p {
    margin: 0 auto;
  }
  .options-section {
    margin-top: 0px;
  }
  .responsive-box {
    flex-direction: column;
  }
  .text-content, .image-content {
    flex: 0 0 100%;
    padding: 8px 0;
  }
  .image-content {
    justify-content: center;
  }
  .text-content {
    padding-right: 0;
  }
  .info-container {
    width: 94%;
  }
  .box-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .info-box {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 560px) {
  .button-row a {
    flex: 1 1 calc(50% - 1rem); /* 2 per row */
  }
}
@media (max-width: 500px) {
  .button-row a {
    flex: 1 1 100%; /* 1 per row */
  }
  .feature-box {
    flex: 1 1 45%;
  }
}
@media (max-width: 450px) {
  .hero-content h1 {
    text-align: left;
    margin: 90px 5% 10px;
  }
  .hero-content p {
    margin: 20px auto;
    text-align: left;
  }
}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 750px) {}
@media screen and (max-width: 480px) {}