:root {
  --primary-purple: rgb(72, 13, 149);
  --dark-purple: rgb(39, 0, 90);
  --light-purple: #f5f0f8;
  --lighter-purple: #e9d9f2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  transition: 0.3s ease;
}

body {
  color: #1e1e2f;
  line-height: 1.5;
  background-color: #ffffff;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* navigation */
.navbar {
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  padding: 10px 25px;
  position: sticky;
  top: -80px;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  overflow: hidden;

  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s ease;
}


.navbar.active {
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  top: 0px;
}


.navbar .left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}


.logo {
  transition: transform 0.2s ease, opacity 0.2s ease;
  flex: 0 0 auto;
}

.logo:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.logo-img {
  height: 42px;
  width: auto;
  display: block;
  filter: saturate(1.1) brightness(0.95) drop-shadow(0 2px 4px rgba(180, 63, 139, 0.15));
  opacity: 0.95;
  border-radius: 15px;
}

.nav-links {
  display: flex;
  gap: 2.1rem;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: white;
  transition: color 0.2s, border-bottom 0.2s;
  font-size: 0.72rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  padding-inline: 4px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: white;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  border-radius: 3px;
}

.navbar.active .nav-links a::after {
  background-color: var(--primary-purple);
}

.navbar.active .nav-links a {
  color: #2a1b3d;
}

.nav-links a:hover {
  color: white;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a.active {
  color: white;
}

.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar.active .nav-links a.active {
  color: var(--primary-purple);
}

.navbar.active .nav-links a.active::after {
  background-color: var(--primary-purple);
}




.nav-socials {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.active .nav-socials {
  border-left-color: var(--lighter-purple);
}

.nav-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  border: 1px solid transparent;
  text-decoration: none;
  transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s;
}

.navbar.active .nav-socials a {
  color: var(--muted, #5b4b6b);
}

.nav-socials a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.navbar.active .nav-socials a:hover {
  background: var(--lighter-purple);
  color: var(--primary-purple);
  border-color: var(--lighter-purple);
}

@media (max-width: 380px) {
  .nav-socials {
    gap: 10px;
    padding-left: 0px;
    border-left-color: rgba(255, 255, 255, 0) !important;
  }

  .nav-socials a {
    width: 35px;
    height: 35px;
    font-size: 1rem;
    background: #f7f0fb;
    color: var(--primary-purple);
    border-color: var(--lighter-purple);
  }
}




/* hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 10px;
  margin-right: -8px;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: #2a1b3d;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.navbar.navbar-active .hamburger {
  padding: 16px 8px;
}

.navbar.navbar-active .hamburger span:nth-child(1) {
  transform: rotate(45deg);
  margin-bottom: -6.5px;
}

.navbar.navbar-active .hamburger span:nth-child(2) {
  opacity: 0;
}

.navbar.navbar-active .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  margin-top: -6.5px;
}


@media (max-width: 800px) {

  html {
    -webkit-tap-highlight-color: transparent;
  }

  .navbar {
    position: fixed !important;
    top: 0px !important;
    left: 0px !important;
    right: 0px !important;
    width: auto;
    display: flex;
    flex-direction: column !important;
    padding: 11px 0px !important;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9) !important;
    transition: 0.3s ease !important;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    gap: 20px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1) !important;
  }

  .navbar.navbar-active {
    height: 100%;
    gap: 0px;
    background-color: rgba(255, 255, 255, 1) !important;
  }

  .navbar .left {
    width: 100%;
    justify-content: space-between;
    padding: 0px 15px;
  }

  .navbar .nav-socials a {
    color: var(--muted, #5b4b6b);
  }


  .logo img {
    height: 38px;
  }

  .hamburger {
    display: flex;
  }

  .navbar .right {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column !important;
    padding: 0px 15px;
    padding-top: 25px;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
  }

  .nav-links {
    max-height: 100%;
    flex: 1;
    width: 100%;
    flex-direction: column;
    text-align: center;
    gap: 5px;
    transition: all 0.3s ease, gap 1s linear(0 0%, 0.22 2.1%, 0.86 6.5%, 1.11 8.6%, 1.3 10.7%, 1.35 11.8%, 1.37 12.9%, 1.37 13.7%, 1.36 14.5%, 1.32 16.2%, 1.03 21.8%, 0.94 24%, 0.89 25.9%, 0.88 26.85%, 0.87 27.8%, 0.87 29.25%, 0.88 30.7%, 0.91 32.4%, 0.98 36.4%, 1.01 38.3%, 1.04 40.5%, 1.05 42.7%, 1.05 44.1%, 1.04 45.7%, 1 53.3%, 0.99 55.4%, 0.98 57.5%, 0.99 60.7%, 1 68.1%, 1.01 72.2%, 1 86.7%, 1 100%) 0.15s !important;
  }

  .navbar.navbar-active .nav-links {
    gap: 15px;
  }

  .nav-links a {
    color: #333 !important;
    font-size: 13px;
    padding: 14px;
    background-color: rgb(246, 242, 249);
    border: solid rgb(244, 239, 248) 1px;
    border-radius: 20px;
  }

  .nav-links a.active {
    background-color: var(--primary-purple) !important;
    color: white !important;
  }

  .nav-links a::after {
    display: none;
  }

}








/* buttons */
.btn {
  display: inlvar(--primary-purple);
  color: white;
  padding: 12px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(180, 63, 139, 0.2);
}

.btn:hover {
  background: var(--dark-purple);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(142, 43, 107, 0.25);
}




.btn:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--primary-purple);
  background: #b43f8b;
  color: white;
  transform: translateY(-2px);
}

/* hero */
.hero {
  background: linear-gradient(135deg, #251b32 0%, #442b4a 100%);
  color: white;
  padding: 40vh 0 90px;
  text-align: left;
  min-height: 110vh;
  position: relative;
  text-align: center;
  margin-top: -75px;
}

.lottie-animation-container {
  position: absolute;
  inset: 0px;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0) !important;
  z-index: 0;
  display: flex;
  justify-content: right;
  padding-block: 65px;
}

.lottie-animation {
  height: 100%;
  width: auto;
}

.hero .container {
  max-width: fit-content;
  margin-inline: auto;
  margin-top: 20vh;
}



.hero .container * {
  animation-name: button-hover;
  animation-duration: 3s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}


@keyframes button-hover {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero .tagline {
  font-size: 1.3rem;
  margin: 24px 0 32px;
  opacity: 0.9;
  font-weight: 300;
  max-width: 750px;
  animation-delay: 0.2s;
}

.hero .btn {
  display: inline-flex;
  background: white;
  color: #251b32;
  box-shadow: 0 4px 14px rgba(180, 63, 139, 0.15);
  font-size: 0.8rem;
  padding-block: 17px;
  position: relative;
  animation-delay: 0.3s;
}

.hero .btn:hover {
  background: #f0e6f0;
  animation-play-state: paused;
}





@media (max-width: 800px) {
  .hero .container {
    margin-left: 0px !important;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .lottie-animation-container {
    padding-block: 40px;
    justify-content: center;
  }

  .hero .btn {
    margin-top: 5vh;
  }
}



/* sections */
section {
  padding: 80px 0;
}

section:nth-child(even) {
  background-color: #faf7fc;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #251b32;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.07rem;
  color: #5b4b6b;
  margin-bottom: 48px;
  max-width: 800px;
}



.founder-message-section {
  padding: 40px 10px;
  background: linear-gradient(135deg, #f5f0f8 0%, #fff0f5 100%);
}


/* founder message */
.founder-message {
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.03);
  margin: 40px 0 20px;
  display: flex;
  gap: 30px;
}

.founder-message:hover {
  box-shadow: 0 20px 35px rgba(180, 63, 139, 0.08);
}

.founder-message .left {
  flex: 1;
}

.founder-message .right {
  flex: 2;
}

.founder-message .founder-img {
  width: 100%;
  max-width: 300px;
  min-width: 190px;
  height: auto;
  border-radius: 16px 15px 15px 56px;
}

.founder-message p {
  font-size: 1.04rem;
  color: #2a2a3b;
}

.founder-name {
  margin-top: 80px;
  font-weight: 700;
  font-size: 1.3rem;
  color: #2a1b3d;
}

.founder-name span {
  font-weight: 400;
  color: var(--primary-purple);
  display: block;
  font-size: 1rem;
}


@media (max-width: 800px) {
  .founder-message {
    flex-direction: column;
    text-align: justify;
    padding: 20px;
  }

  .founder-message .left,
  .founder-message .right {
    flex: none;
    width: 100%;
  }

  .founder-message .founder-img {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 15px;
    background-color: rgb(251, 251, 251);
    object-fit: contain;
  }

  .founder-name {
    margin-top: 40px;
    text-align: center;
  }

  .founder-message-section .container {
    margin-inline: 0px;
    padding-inline: 0px;
  }
}












/* mission/vision grid */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.card {
  background: white;
  padding: 36px;
  border-radius: 32px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.02);
}

.card:hover {
  box-shadow: 0 20px 35px rgba(180, 63, 139, 0.1);
  transform: translateY(-5px);
}

.card h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #251b32;
}

.list-icon {
  color: var(--primary-purple);
  margin-right: 12px;
  width: 24px;
}

.list-item:hover .list-icon {
  transform: scale(1.1);
}

.list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.list-item strong {
  font-weight: 600;
  color: #251b32;
}

/* projects */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.project-card {
  background: white;
  border-radius: 24px;
  padding: 30px 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
  border: 1px solid #f0e4f0;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-purple);
  box-shadow: 0 20px 30px rgba(180, 63, 139, 0.08);
}

.project-card i {
  font-size: 2.5rem;
  color: var(--primary-purple);
  margin-bottom: 20px;
  transition: transform 0.2s;
}

.project-card:hover i {
  transform: scale(1.1);
}

.project-card h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.project-card p {
  color: #3e3e52;
}

/* gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(180, 63, 139, 0.15);
}

.gallery-image-container {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, var(--lighter-purple) 0%, #f0e4f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-purple);
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.gallery-image-container::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(180, 63, 139, 0);
  transition: background 0.3s ease;
}

.gallery-item:hover .gallery-image-container::after {
  background: rgba(180, 63, 139, 0.15);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-image {
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.gallery-item p {
  padding: 16px 20px;
  font-weight: 600;
  color: #251b32;
  text-align: center;
  background: white;
}

/* core values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.value-item {
  background: white;
  border-radius: 20px;
  padding: 28px 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  border: 1px solid #f3e8f3;
}

.value-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-purple);
  box-shadow: 0 15px 25px rgba(180, 63, 139, 0.08);
}

.value-item i {
  font-size: 2.2rem;
  color: var(--primary-purple);
  margin-bottom: 16px;
  transition: transform 0.2s;
}

.value-item:hover i {
  transform: scale(1.1);
}

.value-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #251b32;
}

.value-item p {
  font-size: 0.95rem;
  color: #3b3b4d;
}

/* blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.blog-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
  border: 1px solid #f0e4f0;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-purple);
  box-shadow: 0 20px 30px rgba(180, 63, 139, 0.08);
}

.blog-img {
  height: 200px;
  background: var(--lighter-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b43f8b;
  font-size: 3rem;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-content {
  padding: 24px;
}

.blog-content h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.blog-content p {
  color: #3e3e52;
  margin-bottom: 16px;
}

.blog-link {
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-link i {
  transition: transform 0.2s;
}

.blog-link:hover i {
  transform: translateX(4px);
}

/* work with us */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.work-card {
  background: white;
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.25s ease;
  border: 1px solid #f3e8f3;
}

.work-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-purple);
  box-shadow: 0 15px 25px rgba(180, 63, 139, 0.08);
}

.work-card i {
  font-size: 3rem;
  color: var(--primary-purple);
  margin-bottom: 20px;
}

.work-card h4 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.work-card p {
  color: #3e3e52;
  margin-bottom: 24px;
}

/* donate */
.donate-options {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}

.donate-card {
  background: white;
  border-radius: 32px;
  padding: 40px 30px;
  flex: 1 1 280px;
  text-align: center;
  transition: all 0.25s ease;
  border: 1px solid #f0e4f0;
}

.donate-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-purple);
  box-shadow: 0 20px 35px rgba(180, 63, 139, 0.1);
}

.donate-card i {
  font-size: 3.5rem;
  color: var(--primary-purple);
  margin-bottom: 20px;
}

.donate-card h4 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: #251b32;
}

.donate-card p {
  color: #3e3e52;
  margin-bottom: 30px;
}

.donate-note {
  margin-top: 40px;
  font-size: 1.1rem;
  color: #5b4b6b;
}

/* contact */
.contact-block {
  background: white;
  border-radius: 32px;
  padding: 48px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}

.contact-block:hover {
  box-shadow: 0 25px 45px rgba(180, 63, 139, 0.06);
}

.contact-info {
  flex: 2;
  min-width: 280px;
}

.contact-info p {
  margin: 20px 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s;
}

.contact-info p:hover {
  transform: translateX(6px);
}

.contact-info i {
  width: 30px;
  color: var(--primary-purple);
  font-size: 1.3rem;
  transition: transform 0.2s;
}

.contact-info p:hover i {
  transform: scale(1.2);
}

.contact-info a {
  color: #1e1e2f;
  text-decoration: none;
  border-bottom: 1px dotted transparent;
  transition: border-color 0.2s, color 0.2s;
}

.contact-info a:hover {
  border-bottom-color: var(--primary-purple);
  color: var(--primary-purple);
}

.map-placeholder {
  flex: 1;
  background: #f3ecf7;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5e4b6e;
  font-weight: 500;
  min-height: 200px;
  transition: background 0.3s;
}

.map-placeholder:hover {
  background: #e9d9f2;
}



@media (max-width: 800px) {

  #contact .container {
    margin: 0px !important;
    padding: 10px !important;
  }


  .contact-block {
    flex-direction: column;
    padding: 15px;
  }

  .contact-info {
    order: 2;
  }

  .map-placeholder {
    order: 1;
    width: 100%;
  }
}










/* footer */
footer {
  background: #1b1425;
  color: #cfc5da;
  padding: 40px 0;
  text-align: center;
}

/* scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.3, 1), transform 0.8s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .animate-on-scroll {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {

  .values-grid,
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  .navbar .container {
    flex-direction: column;
    gap: 16px;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .grid-2,
  .work-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {

  .values-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }
}









.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: rgb(249, 246, 251);
  border-radius: 0px;
  overflow: hidden;
  padding-block: 10px 1.5px;
}

.stats-header {
  flex: 0 0 100%;
  padding: 36px 36px 28px;
}

@media (max-width: 600px) {
  .stats-header {
    padding: 24px 16px 16px;
  }
}

.stats-header .section-subtitle {
  margin-bottom: 0;
}

.stats-header .section-title {
  margin-bottom: 5px;
}

.stat {
  flex: 1 1 140px;
  background: #fff;
  padding: 40px 24px;
  text-align: center;
}

.stat-num {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: rgb(72, 13, 149);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5b4b6b;
}








.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
  gap: 24px;
  margin-top: 40px;
}

.partner-item {
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  aspect-ratio: 1 / 1;

  animation-name: container-animation;
  animation-timing-function: ease;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-delay: 0.3s;
}

.partner-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  animation-name: hover-animation;
  animation-timing-function: ease;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}


@keyframes hover-animation {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }


  100% {
    transform: translateY(0px);
  }

}