@import url('https://fonts.googleapis.com/css2?family=Fira+Sans: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');

.fira-sans-thin {
  font-family: "Fira Sans", serif;
  font-weight: 100;
  font-style: normal;
}

.fira-sans-extralight {
  font-family: "Fira Sans", serif;
  font-weight: 200;
  font-style: normal;
}

.fira-sans-light {
  font-family: "Fira Sans", serif;
  font-weight: 300;
  font-style: normal;
}

.fira-sans-regular {
  font-family: "Fira Sans", serif;
  font-weight: 400;
  font-style: normal;
}

.fira-sans-medium {
  font-family: "Fira Sans", serif;
  font-weight: 500;
  font-style: normal;
}

.fira-sans-semibold {
  font-family: "Fira Sans", serif;
  font-weight: 600;
  font-style: normal;
}

.fira-sans-bold {
  font-family: "Fira Sans", serif;
  font-weight: 700;
  font-style: normal;
}

.fira-sans-extrabold {
  font-family: "Fira Sans", serif;
  font-weight: 800;
  font-style: normal;
}

.fira-sans-black {
  font-family: "Fira Sans", serif;
  font-weight: 900;
  font-style: normal;
}

.fira-sans-thin-italic {
  font-family: "Fira Sans", serif;
  font-weight: 100;
  font-style: italic;
}

.fira-sans-extralight-italic {
  font-family: "Fira Sans", serif;
  font-weight: 200;
  font-style: italic;
}

.fira-sans-light-italic {
  font-family: "Fira Sans", serif;
  font-weight: 300;
  font-style: italic;
}

.fira-sans-regular-italic {
  font-family: "Fira Sans", serif;
  font-weight: 400;
  font-style: italic;
}

.fira-sans-medium-italic {
  font-family: "Fira Sans", serif;
  font-weight: 500;
  font-style: italic;
}

.fira-sans-semibold-italic {
  font-family: "Fira Sans", serif;
  font-weight: 600;
  font-style: italic;
}

.fira-sans-bold-italic {
  font-family: "Fira Sans", serif;
  font-weight: 700;
  font-style: italic;
}

.fira-sans-extrabold-italic {
  font-family: "Fira Sans", serif;
  font-weight: 800;
  font-style: italic;
}

.fira-sans-black-italic {
  font-family: "Fira Sans", serif;
  font-weight: 900;
  font-style: italic;
}

* body{
  margin:0px 155px;
  background-color: #f5f5f5;
}

/* navbar */
.navbar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f5f5f5;
  padding-bottom: 15px;
}

.logo{
  font-size:26px;
  color:black;
  font-weight: bold;
}


.sign-in-btn{
  padding:10px 20px;
  font-size: 16px;
  color: #008000;
  background-color: transparent;
  border: 2px solid #008000;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.sign-in-btn:hover{
  background-color: #008000;
  color:#f5f5f5;
  transform: scale(1.05);
}

/* hero */

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(198, 228, 214);
  padding: 50px 25px;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(84, 84, 84, 0.164);

}

.hero .hero-text {
  max-width: 50%;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
  color: #333;
  font-weight: bold;
}

.hero p {
  font-size: 20px;
  margin-bottom: 20px;
  color: #55555592;
}

.hero img {
  max-width: 40%;
  border-radius: 10px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background-color: #008000;
  text-decoration: none;
  border-radius: 5px;
  transition: transform 0.3s, background-color 0.3s;
}

.btn:hover {
  background-color: #005500;
  transform: scale(1.05);
}

/* vision */

.title {
  font-size: 45px;
  font-weight: bold;
  padding-top: 10px;
}

.text{
  font-size: 20px;
  color: #131313;
}

.cards {
  padding: 15px 0px;
  display: flex;
  justify-content:space-between;
  align-items: stretch;
  gap: 25px;
}

.card{
  background-color: white;
  border-radius: 20px;
  padding:30px;
  flex:1;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(84, 84, 84, 0.164);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 50px;
  margin-bottom: 10px;
}

.card h3{
  font-size: 26px;
  margin-bottom: 10px;
}
.card p {
  font-size: 17px;
  color: #131313;
  margin-bottom: 20px;
}

.card .button {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  border-radius: 5px;
  font-size: 14px;
  transition: transform 0.3s, background-color 0.3s;
}

.card .button:hover {
  background-color: rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.card-blue {
  background-color: #eaf3ff;
}

.card-blue .button {
  background-color: #007bff;
}

.card-blue .button:hover {
  background-color: #0056b3;
}

.card-green {
  background-color: rgb(198, 228, 214);
}

.card-green .button {
  background-color: #28a745;
}

.card-green .button:hover {
  background-color: #1e7a33;
}

.card-yellow {
  background-color: #fff7e6;
}

.card-yellow .button {
  background-color: #ffa807;
}

.card-yellow .button:hover {
  background-color: #d59d01;
}

/* recent news */

.recent-news {
  margin: 10px 0px;
}

.recent-news h1 {
  font-size: 40px;
  margin-bottom: 10px;
  font-weight: bold;
  color:#333;
}

.recent-news p {
  font-size: 20px;
  color: #666;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.news-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  
}

.news-item {
  display: flex;
  background-color: #fff;
  border-radius: 20px;
  padding:25px;
  align-items: center;
  border: 1px solid rgba(84, 84, 84, 0.164);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.news-item img {
  width:410px;
  height: 300px;
  border-radius: 15px;
}

* .channel-logo img{
  width: 140px;
  height: 40px;
  display: inline-block;
}

.news-content{
  padding:0px 20px;
}
.news-content h2 {
  font-size: 30px;
  margin-bottom: 10px;
}
.news-content .meta {
  font-size: 15px;
  color: #888;
  margin-bottom: 10px;
}

.news-content p {
  font-size: 20px;
  margin-bottom: 25px;
  color: #555;
}


/* donation */


.donate-container {
  text-align: center;
  padding:0px 40px;
  margin: 0px 30px 10px 30px;
}

.donate-container h1 {
  font-size: 45px;
  margin-bottom: 10px;
}

.donate-container p {
  font-size: 20px;
  color: #555;
  margin-bottom: 20px;
}

.donation-options {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  gap: 25px;
  flex:1;
  height: 125px;
  margin-bottom: 20px;

}

.donation-card {
  flex: 1 1 100px;
  padding: 15px 10px;
  background-color: #fff;
  color: #333;
  font-size: 30px;
  font-weight: bold;
  text-align:center;
  align-items: center;
  border: 1px solid rgba(84, 84, 84, 0.164);
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;

}

.donation-card:hover {
  background-color: rgb(198, 228, 214);
  border-color: #5cb85c;
  transform: scale(1.05);
}

.other-amount {
  margin:0px 40px 20px 40px;
}

.other-amount input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-align: center;
}

.other-amount input:focus {
  border-color: #5cb85c;
  transform: scale(1.05);
  outline: none;
}

.other-amount input:hover{
  border-color: #5cb85c;
  transform: scale(1.05);
  outline: none;
}

/* challenges */

/* Footer */

footer{
  display: flex;
  justify-content: center;
  align-items: center;
}

.newsletter {
  background-color: rgb(198, 228, 214);
  border-radius: 20px;
  text-align: center;
  padding: 80px 50px;
  margin: 30px 0px;
  width: 100%;
  border: 1px solid rgba(84, 84, 84, 0.164);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.newsletter h1 {
  margin: 0;
  font-size: 45px;
  font-weight: bold;
  color: #000;
}

.newsletter p {
  font-size: 20px;
  color: #666;
  margin-bottom: 20px;
}

.newsletter .input-group {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  padding:0px 215px;
}

.newsletter input[type="email"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
  outline: none;
  flex: 1;
  font-size: 24px;
}

.newsletter input:focus{
  border-color: #5cb85c;
  transform: scale(1.05);
  outline: none;
}

.newsletter input:hover{
  border-color: #5cb85c;
  transform: scale(1.05);
  outline: none;

}

.newsletter .btn {
  border-radius: 0 5px 5px 0;
  font-weight: bold;
  font-size: 24px;
}

.newsletter small {
  font-size: 16px;
  color: #666;
}

/* quote */

.quote-section {
  background: #fff;
  border-radius: 10px;
  padding: 20px 30px;
  border: 1px solid rgba(84, 84, 84, 0.164);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.quote-section .quote{
  background-image: url(../assets/quote-bg.png);
  background-repeat: no-repeat;
  background-position: left top;
  z-index: -1;
}

.quote-text {
  font-size: 20px;
  color: #555;
  line-height: 1.4;
  margin: 0;
  padding: 25px 10px;

}

.author {
  margin-top: 20px;
  font-size: 16px;
  font-weight:900;
  color: #333;
}

.designation {
  font-size: 14px;
  color: #777;
}

/* extras */

.links {
  display: flex;
  flex-direction: column;
  background-color: white;
  text-align: center;
  margin-top: 20px; 
}

.links h1 {
  font-size: 30px;
  color: #333;
  font-weight: bold;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
  padding-bottom: 20px;
}

.social-icons img {
  width: 24px;
  height: 24px;
}

/* pillar */

.pillars h1 {
  font-size: 45px;
  font-weight: bold;
  padding-bottom: 5px;
  padding-top: 10px;
}

.pillar-cards {
  padding: 15px 0px;
  display: flex;
  justify-content:space-between;
  align-items: stretch;
  gap: 20px;
}

.pillar-cards.card{
  background-color: white;
  border-radius: 20px;
  padding:30px;
  flex:1;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(84, 84, 84, 0.164);

}


.pillar-cards img {
  width: 50px;
  margin-bottom: 3px;
}

.pillar-cards h3{
  font-size: 26px;
  margin-bottom: 5px;
}
.pillar-cards p{
  font-size: 17px;
  color: #131313;
  margin-bottom: 20px;
}

.p-card:hover {
  background-color: rgb(198, 228, 214);
  border-color: #5cb85c;
  transform: scale(1.05);
}