/* 

.banner-btn{
    margin-top: 20px;
    width: 150px;
    padding: 10px;
    border-radius: 50px;
    background-color: orange;
    border: none;
    color: white;
}

.banner-btn:hover{
    transform: translateY(-10px);
    transition: cubic-bezier(0.455, 0.03, 0.515, 0.955) 2s;
}
.fa-heart{
    color: black;
}
.banner-btn:hover .fa-heart{
transform: rotate(0.1turn);
transition: ease-out 1s;
color: black;
}
.home-h1{
color: black;
    max-width: 700px;
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
}

.col4-img{
    height: 250px;
    width: 100%;
    border-radius: 20px;
        margin-bottom: 15px;

}
.bg-col4{
    background-color: rgba(169, 169, 169, 0.308);
        border-radius: 20px;
    height: 250px;
    width: 100%;
    margin-bottom: 15px;
}

.col-4-h1{
    font-size: 3rem;
    font-weight: bold;
    color: orange;
}

.left-side {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.right-slider-wrapper {
  width: 100%;
  padding: 70px 0;
  overflow: hidden;
}

.right-mySwiper {
  overflow: visible;
}


.right-slide-card {
  position: relative;
  height:100vh;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
}

.side-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.right-side {
  min-height: 100vh;

}
.home-card-h1{
    font-weight: bold;
    font-size: 2.6rem;
    text-transform: capitalize;
}


.cor-slide-number {
  font-size: 90px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 480px) {
 .home-slider {
  margin-top: 20px;

  overflow: hidden;
}
}

@media (min-width: 481px) and (max-width: 767px) {
 .home-slider {
  margin-top: 20px;

  overflow: hidden;
}
}

@media (min-width: 768px) and (max-width: 1023px) {
 .home-slider {
 margin-top: 20px;
  overflow: hidden;
}
}

@media (min-width: 1024px) {
   .reviews-card{
    height: 400px;
   
}
}

 */












 /* Color Palette Variables */
:root {
  --primary-brand: rgb(0, 42, 53);
  --primary-brand-light: rgba(0, 42, 53, 0.06);
  --primary-brand-border: rgba(0, 42, 53, 0.12);
}

/* Header Heading */
.home-h1 {
  color: var(--primary-brand);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.support-header-img {
  max-height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.05));
}

/* Impact Cards Structure */
.impact-card-img-wrapper {
  height: 240px;
  width: 100%;
  background-color: #e2e8f0;
}

.impact-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.impact-card-img-wrapper:hover .impact-img {
  transform: scale(1.05);
}

.impact-card-body {
  background-color: #ffffff;
  border: 1px solid var(--primary-brand-border);
  min-height: 260px;
}

/* Typography & Badges */
.impact-badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary-brand-light);
  color: var(--primary-brand);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.impact-card-title {
  color: var(--primary-brand);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
}

.impact-card-desc {
  color: #475569;
  font-size: 0.925rem;
  line-height: 1.6;
}

.impact-source {
  font-size: 0.8rem;
  color: #94a3b8;
}

.primary-text {
  color: var(--primary-brand);
}

/* Media Query Adjustments */
@media (max-width: 991px) {
  .home-h1 {
    text-align: center;
  }
  .impact-card-img-wrapper {
    height: 220px;
  }
}