@import url("https://fonts.googleapis.com/css2?family=Fjalla+One&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  overflow-x: hidden; 
  max-width: 100%;
   margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  max-width: 100%;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  max-width: 100%;
}


:root {
  --light-color: #faf7f3;
  --second-light-color: #f0e4d3;
  --brown-color: #dcc5b2;
  --primary-color: goldenrod;
}

/* scroll to top  */

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: var(--primary-color);
  color: white;
  cursor: pointer;
  padding: 10px;
  border-radius: 4px;
  transition: 0.3s;
}

#myBtn:hover {
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  color: var(--primary-color);
}

.big-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--brown-color);

}

.laptop-header {
  background-color: white;
  /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
  height: 55px;
  position: sticky;
}

.slogan-text {
  font-size: 1rem;
  font-weight: 200;
}

.laptop-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.laptop-menus {
  display: flex;
  justify-content: space-around;
}

.laptop-menus > li {
  padding: 10px;
  list-style-type: none;
  display: flex;
  align-items: center;
}

.laptop-social-media {
  display: flex;
  justify-content: space-around;
}

.laptop-social-media > li {
  padding: 10px;
  list-style-type: none;
}

.laptop-logo li,
a {
  list-style-type: none;
}

.laptop-logo a {
  text-transform: uppercase;
  text-decoration: none;
  color: black;
  font-weight: 800;
  font-size: 1.2rem;
  transition: 0.3s;
  font-family: inherit;
}

.laptop-logo a:hover {
  text-transform: uppercase;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 800;
  font-size: 1.2rem;
}

.laptop-menus li a {
  padding: 5px;
  color: black;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  font-size: 0.8rem;
}

.laptop-menus li:hover a {
  border-radius: 5px;
  padding: 5px;
  color: black;
  /* text-transform: capitalize; */
  text-decoration: none;
  font-weight: 500;
  background-color: var(--primary-color);
}

.laptop-social-media a {
  color: black;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.laptop-social-media a:hover {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

/* mobile nav bar  */
.logo-text {
  font-size: 1.3rem;
  font-weight: 900;
}

.logo-text a {
  /* width: 120px; */
  text-decoration: none;
  color: black;
}

.right-menus .prayer-btn a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  padding: 5px;
  background-color: var(--primary-color);
  font-size: 1rem;
  border-radius: 5px;
}

.mobile-nav {
  background-color: white !important;
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 2px solid var(--brown-color);
}

.mobile-nav-content {
  padding: 8px 2%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-menus li {
  list-style-type: none;
  margin-top: 1rem;
}

.mobile-nav-menus a {
  text-decoration: none;
  color: black;
}

.right-menus {
  display: flex;
  align-items: center;
}

.offcanvas-btn {
  color: black;
  border: 0;
  background-color: transparent;
}

/* banner styles  */
.banner {
  background: linear-gradient(rgba(75, 54, 0, 0.425)), url(../img/banner.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-content {
  display: grid;
  gap: 20px;
}

.welcome-note {
  font-size: 3rem;
  font-weight: 900;
  color: white;
}

.secondary-note {
  color: var(--primary-color);
}

.welcome-passage {
  font-size: 1.5rem;
  color: white;
}

.baner-donate {
  text-decoration: none;
  background-color: var(--primary-color);
  padding: 10px 5%;
  border-radius: 5px;
  color: black;
  font-weight: 500;
  transition: 0.3s;
}

.baner-donate:hover {
  text-decoration: none;
  background-color: white;
  padding: 10px 5%;
  border-radius: 5px;
  color: black;
  font-weight: 500;
}

.banner-visit {
  text-decoration: none;
  background-color: var(--brown-color);
  padding: 10px 5%;
  border-radius: 5px;
  color: black;
  font-weight: 500;
  transition: 0.3s;
}

.banner-visit:hover {
  text-decoration: none;
  background-color: white;
  padding: 10px 5%;
  border-radius: 5px;
  color: black;
  font-weight: 500;
}

.box-content {
  padding: 20px 10%;
}

.banner-features {
  padding: 10px 5%;
}

.box-content {
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.445);
  margin: 10px;
  border-radius: 10px;
  transition: 0.3s;
}

.box-content:hover .banner-feature-icon {
  color: var(--primary-color);
  transition: 0.3s;
}

.box-content:hover .banner-feature-title {
  color: white;
  transition: 0.3s;
}

.banner-features {
  justify-content: center;
}

.banner-feature-icon {
  color: var(--light-color);
  font-size: 1.5rem;
}

.banner-feature-title {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 600;
}

.banner-feature-dec {
  font-size: 0.9rem;
  color: white;
  font-weight: 100;
}

/* about section starts  */
.about-section {
  background-color: var(--light-color);
}

.section-padding {
  padding: 2rem;
}

.about-content {
  display: flex;
  justify-content: center;
  text-align: center;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.section-content {
  font-size: 1rem;
  font-weight: 400;
}

.know-btn {
  padding: 8px 3%;
  text-decoration: none;
  background-color: var(--primary-color);
  border-radius: 25px;
  color: black;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s;
}

.know-btn:hover {
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(218, 165, 32, 0.623),
    0 6px 20px 0 rgba(218, 165, 32, 0.623);
}

.vision-title {
  margin-top: 0.9rem;
  font-size: 1.5rem;
  font-weight: 800;
}

.vision-content {
  text-align: justify;
  margin-top: 0.9rem;
  font-size: 1rem;
}

/* footer starts  */

.footer {
  background-color: var(--light-color);
  display: flex;
  justify-content: center;
}

.footer-contents {
  display: flex;
  /* align-items: center; */
  justify-content: center;
}

.submit-btn {
  text-align: center;
  background-color: var(--primary-color);
  border: 0;
  padding: 10px 10%;
  border-radius: 25px;
  margin-top: 0.8rem;
  color: black;
  text-decoration: none;
}

input {
  width: 100%;
  margin-bottom: 0.8rem;
  outline: 0;
  border: 0;
  border-bottom: 1px solid var(--primary-color);
}

.footer-link {
  text-decoration: none;
  color: black;
}

.credit-link {
  color: var(--primary-color);
  text-decoration: none;
}

.footer-menus > li {
  padding-top: 10px;
  list-style-type: none;
}

.footer-link > li {
  list-style-type: none;
  padding-top: 1rem;
  transition: 0.3s;
}

.footer-link > li a {
  color: black;
  text-decoration: none;
  transition: 0.3s;
}

.footer-link li a:hover {
  color: black;
  /* text-transform: capitalize; */
  text-decoration: none;
  border-bottom: 2px solid var(--primary-color);
}

.footer-icons li {
  list-style-type: none;
  margin-top: 1rem;
  transition: 0.3s;
}

.footer-icon {
  text-decoration: none;
  margin-top: 1rem;
  color: black;
  transition: 0.3s;
}

.footer-icons li a:hover {
  color: black;
  text-decoration: none;
  border-bottom: 2px solid var(--primary-color);
}

.footer-contact li {
  list-style-type: none;
}

/* cta starts  */

.cta-content {
  text-align: center;
  background-color: rgba(218, 165, 32, 0.548);
  border-radius: 20px;
  display: flex;
  justify-content: center;
}

.cta-title {
  font-size: 1.2rem;
  font-weight: 600;
}

.cta-para {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0.8rem;
}

.cta-btn {
  margin-top: 0.8rem;
}

.cta-btn a {
  padding-top: 0.8rem;
  background-color: white;
  padding: 10px 3%;
  border-radius: 5px;
  text-decoration: none;
  color: black;
  font-weight: 600;
  transition: 0.3s;
}

.cta-btn a:hover {
  padding-top: 0.8rem;
  background-color: var(--primary-color);
  padding: 10px 3%;
  border-radius: 5px;
  text-decoration: none;
  color: black;
  font-weight: 600;
}

.laptop-menus li.active a {
  background-color: var(--primary-color); /* or your theme color */
  font-weight: bold;
  border-radius: 5px;
}

/* charity foundation starts  */

.charity-hero {
  background-color: var(--light-color);
}

.hero-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-color);
}

.hero-para {
  margin-top: 1rem;
  font-weight: 300;
  text-align: justify;
}

.hero-quote {
  height: max-content;
  background-color: var(--light-color);
  border-left: 2px solid var(--primary-color);
  padding: 5px;
  margin-top: 1rem;
  text-align: justify;
}

.hero-btn {
  margin-top: 1.5rem;
}

.hero-btn a {
  color: black;
  text-decoration: none;
  padding: 10px 5%;
  background-color: var(--primary-color);
  border-radius: 5px;
}

.ministry-box {
  border: 1px solid var(--primary-color);
  padding: 20px 5%;
  border-radius: 8px;
  transition: 0.3s;
  /* box-shadow: 0 4px 8px 0 rgb(218, 165, 0.500), 0 6px 20px 0 rgb(218, 165, 0.500) ; */
}

.ministry-box:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.ministry-box:hover a {
  padding: 10px 5%;
  background-color: var(--brown-color);
  transition: 0.3s;
  border-radius: 5px;
}

.ministry-title {
  margin-top: 0.9rem;
  font-size: 1.5rem;
  font-weight: 800;
  transition: 0.3s;
}

.ministry-content {
  text-align: justify;
  margin-top: 0.9rem;
  transition: 0.3s;
  font-size: 1rem;
}

.ministry-btn {
  margin-top: 0.9rem;
  transition: 0.3s;
}

.ministry-btn a {
  padding: 10px 5%;
  color: black;
  text-decoration: none;
}

.ministry-btn .fa-heart {
  color: var(--primary-color);
}

/* program starts  */

.program-box {
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  padding: 10px 5%;
  transition: 0.3s;
}

.program-box .program-icon {
  padding: 10px;
  border-radius: 50%;
  font-size: 2rem;
  text-align: center;
  background-color: var(--primary-color);
  transition: 0.3s;
}

.program-title {
  font-size: 1.25rem;
  margin-top: 1rem;
  font-weight: 800;
}

.program-para {
  font-size: 1rem;
  font-weight: 400;
  margin-top: 1rem;
}

.program-box:hover .program-icon {
  background-color: white;
  color: var(--primary-color);
}

.program-box:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

/* impacts  */

.impact-content {
  background-color: var(--second-light-color);
  padding: 10px 5%;
  border-radius: 10px;
}

.impacts .col-md-3:nth-child(odd) .impact-number {
  color: var(--primary-color);
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 900;
}

.impacts .col-md-3:nth-child(even) .impact-number {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 900;
}

.impacts .col-md-3:nth-child(odd) .impact-para {
  color: var(--primary-color);
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
}

.impacts .col-md-3:nth-child(even) .impact-para {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
}

.impact-number::after {
  content: "+";
  position: absolute;
  right: -1.5rem;
  font-size: 2rem;
  color: inherit;
  top: 0;
}

.text-justify {
  text-align: justify;
}

.program-desc {
  color: var(--primary-color);
  font-weight: 400;
}

.program-para a {
  text-decoration: none;
  color: black;
}

.contact-btn-wa a{
  text-decoration: none;
  color: black;
  padding: 10px 3%;
  background-color: var(--primary-color);
  border-radius: 5px;
}

.bg-darkx {
  background-color: var(--light-color);
  color: black !important;
}