#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.hero-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-image: url(../images/Covid.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}


.hero-intro {
  position: relative;
  width: fit-content;
  padding: 70px 9vw 10px 6vw;
}



.hero-intro h1 {
  margin-top: 30px;
  font-family: Oilvare Base;
  font-size: clamp(32px, 6vw, 80px);
  color: white;
  cursor: pointer;
  transition: all ease-in-out 0.4s;
  display: inline-block;
}

h1:hover {
  color: #01758c;
}

.hero-intro p {
  margin-top: 25px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 25px;
  color: white;
  border-left: 4px solid #c13584;
  padding-left: 20px;
  cursor: pointer;
}

.hero-intro a {
  margin-top: 40px;
  font-family: Roboto;
  font-size: 25px;
  font-weight: 700;
  color: black;
  display: block;
  width: fit-content;
  background-color: #c13584;
  padding: 10px 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: all ease-in-out 0.5s;
}

.hero-intro a:hover {
  background-color: #114662;
  color: #c13584;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes bounce {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-15px); }
  50%  { transform: translateY(5px); }
  70%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* Apply animations */
.hero-intro h1 {
  animation:
    slideInLeft 0.6s ease-out forwards, /* was 1s */
    bounce 0.4s ease-out 0.8s forwards; /* was 0.6s with 1.2s delay */
}

.hero-intro p {
  animation: slideInLeft 0.8s ease-out forwards; /* was 1.2s */
  animation-delay: 0.2s; /* was 0.3s */
  opacity: 0;
}

.hero-intro a {
  animation: slideInLeft 1s ease-out forwards; /* was 1.4s */
  animation-delay: 0.4s; /* was 0.6s */
  opacity: 0;
}

@media (max-width: 768px) {
  .hero-section {
    background-size: cover;
    background-position: center;
    height: auto; /* Allow height to adjust based on content */
    padding-bottom: 50px;
  }

  #particles-js {
    height: 100%;
  }

  .hero-intro {
    padding: 40px 6vw;
    width: 100%;
    text-align: left; /* Restore original alignment */
  }

  .hero-intro h1 {
    font-size: clamp(32px, 6vw, 60px);
    line-height: 1.2;
  }

  .hero-intro p {
    font-size: 16px;
    padding-left: 16px;
    border-left: 4px solid #c13584; /* Restored border */
    margin-top: 20px;
  }

  .hero-intro a {
    font-size: 16px;
    margin-top: 25px;
    padding: 10px 16px;
    display: inline-block;
  }
}
/*INTRODUCTION SECTION */

.intro-section {
  padding: 4rem 2rem;
  position: relative;
}

/* Top animated border */
.intro-section .top-line {
  margin-top: 20px;
  background-color: white;
  width: 0;
  margin-bottom: 2rem;
  transition: width 1.2s ease;
}
.top-line.animate {
  width: 100%;
}

.intro-p {
  margin-left: 65%;
  font-family: DMSans;
  font-size: 1.6rem;
  color: white;
}

.intro-section h2 {
  font-family: DMSans;
  font-size: 80px;
  font-weight: 600;
  color: transparent;
  background: linear-gradient(to right, #71a3c1 0%, #34e951 100%);
  -webkit-background-clip: text;
   background-clip: text;
  margin-left: 40%;
  padding: 3rem 0;
  display: inline-block; /* Ensure the gradient only covers the text */
}

.intro-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Left column */
.intro-section-left {
  flex: 1;
  min-width: 250px;
}
.intro-section-left p{
  margin-top: 10px;
  font-family: DMSans;
  font-size: 1.2rem;
  color: white;
}


.lottie-animation {
  width: 400px !important; /* Force width */
  height: 400px !important; /* Force height */
  display: block; /* Ensure it behaves as a block element */
  object-fit: contain; /* Maintain aspect ratio within bounds */
}

/* Optional: Adjust if the animation still doesn't fit */
.lottie-animation > * {
  width: 100% !important;
  height: 100% !important;
}

/* Right column */
.intro-section-right {
  flex: 2;
  max-width: 800px;
}
.intro-section-right p {
  margin-top: 10px;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.3;
  font-family: DMSans;
  color: rgba(255, 255, 255, 0.1); /* faded white text */
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .intro-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .intro-section-left,
  .intro-section-right {
    width: 100%;
    max-width: 100%;
  }

    .intro-section-left p {
    margin-top: 2.5rem;
  }

  .intro-section h2 {
    font-size: 40px;
    margin-left: 0;
    padding: 2rem 0 1rem;
  }

  .intro-p {
    margin-left: 0;
    text-align: center;
    font-size: 1.2rem;
  }

  .lottie-animation {
    width: 100% !important;
    height: auto !important;
    max-width: 300px;
    margin: 0 auto;
  }

  .intro-section-right p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 0 1rem;
    text-align: left;
  }
}




/* --------- Challenge Section --------- */
.challenge-section {
  width: 100vw; 
  overflow: hidden;
  padding: 20px;
}

.challenge-section .top-line {
  margin-top: 20px;
  background-color: white;
  width: 0;
  margin-bottom: 2rem;
  transition: width 1.2s ease;
}
.top-line.animate {
  width: 100%;
}

.challenge-section h2 {
  font-family: DMSans;
  font-size: 50px;
  font-weight: 600;
  color: transparent;
  margin-left: 35%;
  background: linear-gradient(45deg, #FF6B6B, #FF8E53, #FFD700);
  -webkit-background-clip: text;
   background-clip: text;
   text-align: center;
  padding: 3rem 0;
  display: inline-block; /* Ensure the gradient only covers the text */
}

.challenge-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.challenge-section-left {
  flex: 1;
  min-width: 250px;
}

.challenge-section-left p{
  font-family: DMSans;
  font-size: 1.2rem;
  border-left: 4px solid #c13584;
  padding-left: 1rem;
  color: white;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to{
    transform: translateX(-50%);
  }
}

.communities {
  overflow: hidden;
  padding: 80px 0;
  position: relative;
}
.slide-track {
  display: flex;
  width: calc(6 * 340px *  2); /* 6 images × width (including margin) × 2 slides */
  animation: scroll 35s linear infinite;
}

.communities:hover .slide-track {
  animation-play-state: paused;
}

.communities::before,
.communities::after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.communities::before {
  left: 0;
}
.communities::after {
  right: 0;
}
.communities-slide {
  display: flex;
}

.communities-slide img {
  height: 200px;
  width: 300px;
  border-radius: 15px;
  margin: 0 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.communities-slide img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5); /* 👈 stronger on hover */
}
.challenge-section-right {
  flex: 2;
  max-width: 800px;
}

.challenge-section-right p {
  color: white;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  font-family: Quicksand;
}

@media (max-width: 768px) {
  .challenge-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .challenge-section h2 {
    font-size: 2.2rem;
    margin-left: 0;
    padding: 2rem 0 1rem;
    text-align: center;
  }

  .challenge-section-left,
  .challenge-section-right {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
  }

  .challenge-section-left p {
    font-size: 1.0rem;
    padding-top: 1rem;
    padding-left: 1rem;
  }

  .challenge-section-right p {
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: left;
    padding: 0 1rem;
  }

  .slide-track {
    width: calc(6 * 260px * 2); /* smaller width per image on small screens */
    animation-duration: 50s; /* slower scroll on mobile */
  }

  .communities-slide img {
    width: 240px;
    height: 160px;
    margin: 0 10px;
  }

  .communities::before,
  .communities::after {
    width: 100px; /* smaller edge masks */
  }
}


/* ========== SOLUTIONS SECTION ========== */
.solutions-section {
  padding: 4rem 2rem;
  position: relative;
}

.solutions-section .top-line {
  background-color: white;
  width: 0;
  transition: width 1.2s ease;
}
.top-line.animate {
  width: 100%;
}

.section-title {
  font-family: DMSans;
  font-size: 50px;
  font-weight: 600;
  color: transparent;
  margin-left: 30%;
  text-align: center;
  padding: 3rem 0;
  display: inline-block;
  background: linear-gradient(90deg, #FF69B4, #BA55D3);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ========== CARD GRID ========== */
.container {
  display: grid;
  place-items: center;
  margin-inline: 1.5rem;
  padding-block: 2rem;
}

.card__container {
  display: grid;
  row-gap: 3.5rem;
  width: 100%;
}

/* Responsive Columns */
@media screen and (min-width: 768px) {
  .card__container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
  }
}
@media screen and (min-width: 1120px) {
  .card__container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========== CARD ========== */
.card__article {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

/* ========== LOTTIE PLAYER ========== */
.icon-wrapper {
  width: 100%;
  max-width: 360px;
  height: 240px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  outline: 1px solid rgba(0, 0, 0, 0.05);
  background: linear-gradient(to bottom, #190076 0%, #3b24a1 50%, #6c5ce7 100%);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.icon-wrapper dotlottie-player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover; /* Not crucial for Lottie, but keeps consistency */
}

/* ========== OVERLAY CARD DATA ========== */
.card__data {
  width: 90%;
  max-width: 320px;
  background-color: rgba(0, 0, 0, 0.85);
  padding: 1.5rem 2rem;
  box-shadow: 0 8px 24px hsla(0, 0%, 0%, .15);
  border-radius: 1rem;
  position: absolute;
  bottom: -9rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  opacity: 0;
  color: white;
  transition: opacity 1s 1s;
}

.card__description {
  display: block;
  font-family: DMSans;
  font-size: 0.875rem;
  margin-bottom: .25rem;
}

.card__title {
  font-family: DMSans;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: .75rem;
  display: inline-block;
  color: transparent;
  background: linear-gradient(90deg, #FF69B4, #BA55D3);
  -webkit-background-clip: text;
  background-clip: text;
}

.card__button {
  font-family: DMSans;
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
}

/* ========== HOVER EFFECT ========== */
.card__article:hover .card__data {
  animation: show-data 1s forwards;
  opacity: 1;
  transition: opacity .3s;
}

.card__article:hover {
  animation: remove-overflow 2s forwards;
  cursor: pointer;
}

.card__article:not(:hover) {
  animation: show-overflow 2s forwards;
}

.card__article:not(:hover) .card__data {
  animation: remove-data 1s forwards;
}

/* ========== KEYFRAMES ========== */
@keyframes show-data {
  50% {
    transform: translateY(-10rem);
  }
  100% {
    transform: translateY(-7rem);
  }
}

@keyframes remove-overflow {
  to {
    overflow: initial;
  }
}

@keyframes remove-data {
  0% {
    transform: translateY(-7rem);
  }
  50% {
    transform: translateY(-10rem);
  }
  100% {
    transform: translateY(.5rem);
  }
}

@keyframes show-overflow {
  0% {
    overflow: initial;
    pointer-events: none;
  }
  50% {
    overflow: hidden;
  }
}

/* ========== SMALL SCREENS ========== */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .card__data {
    width: 250px;
    padding: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .section-title {
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  margin-left: 0;
  padding: 1.5rem 0;
  text-align: center;
  }

  .icon-wrapper {
    height: 200px;
  }

  .card__data {
    font-size: 0.95rem;
    padding: 1rem;
  }
}


/* ------------- QUESTIONS SECTION ------------- */

/* Layout & Section */
.questions-section {
  padding: 4rem 2rem;
  position: relative;
}

/* Top animated border */
.top-line {
  height: 2px;
  background-color: white;
  width: 0;
  margin-bottom: 2rem;
  transition: width 1.2s ease;
}
.top-line.animate {
  width: 100%;
}

/* Layout */
.questions-layout {
  margin-top: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}
.questions-label {
  font-family: Quicksand;
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  flex: 1;
}

.questions-label h3 {
  border-left: 4px solid #c13584;
  padding-left: 4px;
}

/* Ensure Lottie isn't affected by the pink border */
.lottie-wrapper {
  margin-top: 1rem;
  margin-left: -20px; /* shift it a little left */
  padding-left: 0;
  border: none;
}

/* Optional extra control */
.lottie-wrapper dotlottie-player {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

/* Rotating fade-in animation */
.lottie-wrapper.reveal-on-scroll {
  opacity: 0;
  transform: rotate(-180deg) scale(0.5);
  transition: opacity 1s ease, transform 1s ease;
}

.lottie-wrapper.visible {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}



/* Accordion Layout */
.accordion-wrapper {
  margin-left: auto;
  flex: 2;
  width: 100%;
  max-width: 800px;
}
.accordion {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.accordion-item {
  padding-top: 1.25rem;
  overflow: hidden;
}

/* Animated question border line */
.question-line {
  height: 2px;
  background-color: white;
  width: 0;
  margin-bottom: 1rem;
  transition: width 1.2s ease;
}
.question-line.animate {
  width: 100%;
}

/* Header + Toggle */
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.accordion-question {
  font-family: DMSans;
  font-size: 1.75rem;
  line-height: 1.6;
  font-weight: 400;
  color: white;
}

/* Icon (plus sign) */
.accordion-icon {
  position: relative;
  width: 16px;
  height: 16px;
  display: inline-block;
}
.accordion-header:hover .accordion-icon {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}
.accordion-item.active .accordion-icon {
  transform: rotate(0deg);
}
.accordion-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  background-color: white;
  transform: translateY(-50%);
}
.accordion-icon::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 2px;
  top: 0;
  left: 50%;
  background-color: white;
  transform: translateX(-50%);
  transition: opacity 0.3s ease;
}
.accordion-item.active .accordion-icon::after {
  opacity: 0;
}

/* Dropdown body */
.accordion-body {
  font-family: DMSans;
  font-size: 1rem;
  line-height: 1.6;
  color: white;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.6s ease;
}
.accordion-item.active .accordion-body {
  max-height: 500px;
  opacity: 1;
  margin-top: 1rem;
}

/* Reveal on Scroll */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideInLeft {
  from {
    transform: translateX(-80px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(80px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Shared styles for reveal animation */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px); /* fallback */
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  animation: slideInLeft 0.8s ease forwards;
}

.reveal-right.visible {
  animation: slideInRight 0.8s ease forwards;
}

/* =======QUESTION SECTION RESPONSIVE FOR SMALL SCREENS ======= */
@media (max-width: 768px) {
  .questions-layout {
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
  }

  .questions-label {
    text-align: center;
    flex: none;
    width: 100%;
  }

  .questions-label h3 {
    font-size: 1.5rem;
    padding-left: 0;
    border-left: none;
    border-bottom: 3px solid #c13584;
    display: inline-block;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
  }

  .lottie-wrapper {
    margin: 0 auto;
    max-width: 90%;
  }

  .lottie-wrapper dotlottie-player {
    width: 100% !important;
    height: auto !important;
  }

  .accordion-wrapper {
    width: 100%;
    margin: 2rem 0 0 0;
    max-width: 100%;
    padding: 0 1rem;
  }

  .accordion-question {
    font-size: 1.2rem;
  }

  .accordion-body {
    font-size: 0.95rem;
  }
}



/* TEAM SECTION */
.team-section {
   text-align: center;
}
.team-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  padding: 20px 0;
  font-family: DMSans;
  color: transparent;
  background: linear-gradient(90deg, #B2FEFA, #0ED2F7);
  -webkit-background-clip: text;
  background-clip: text;
}

.row {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Always 3 columns */
  gap: 2em;
  justify-items: center; /* center the columns */
  padding: 2em 1em;
  text-align: center;
}


.column {
  width: 100%;
  max-width: 300px;
}


.card {
  box-shadow: 0 0 2.4em rgba(25, 0, 58, 0.1);
  padding: 2em 1em;
  border-radius: 1.5em; /* rounded rectangle */
  color: #1f003b;
  background-color: #061822;
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.card .img-container {
  width: 7em;
  height: 7em;
  background-color: #190076;
  padding: 0.5em;
  border-radius: 50%;
  margin-bottom: 1.5em;
}

.card img {
  width: 100%;
  border-radius: 50%;
  height: 100%;
  object-fit: cover;
  object-position:  top center;
}

.card h3 {
  font-weight: 600;
  margin-bottom: 0.2em;
  font-family: Roboto;
  color: #ffffff;
}

.card p {
  font-weight: 600;
  text-transform: uppercase;
  margin: 0.5em 0 1.5em 0;
  letter-spacing: 1.5px;
  font-family: Quicksand;
  color: #ffffff;
  
}

.icons {
  width: 100%;
  max-width: 200px;
  display: flex;
  justify-content: space-around;
  margin-top: auto; 
  color: #ffffff;
}


.card a {
  text-decoration: none;
  color: inherit;
  font-size: 1.3em;
  transition: transform 0.2s;
}

.card a:hover {
  transform: scale(1.2);
}

.card:hover {
  background: linear-gradient(to bottom, #190076 0%, #3b24a1 50%, #6c5ce7 100%);
  color: #ffffff;
}

.card:hover .img-container {
  transform: scale(1.1);
}


/* Responsive tweaks */
@media screen and (min-width: 768px) {
  section {
    padding: 2em 4em;
  }
}

@media screen and (min-width: 992px) {
  section {
    padding: 3em;
  }
}
@media screen and (max-width: 992px) {
  .row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .row {
    grid-template-columns: 1fr;
  }
}

/* PARTNERS SECTION */
.partners-section {
  padding: 4rem 2rem;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
}

.partners-title {
  font-size: 2.8rem;
  font-weight: 700;
   color: transparent;
   background: linear-gradient(90deg, #FFF95B, #00FF87);
  -webkit-background-clip: text;
   background-clip: text;
   display: inline-block;
  margin-bottom: 1rem;
}

.partners-description {
  max-width: 760px;
  margin: 0 auto 3rem;
  font-size: 1.15rem;
  color: white;
  line-height: 1.8;
}

.partners-logos {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  flex-wrap: wrap;
}

.partner-logo {
  max-width: 200px;
  height: auto;
}

/* FOOTER SECTION */
.footer-section {
  width: 100%;
  background-color: #032832;
  padding: 3rem 2rem;
  font-family: 'Quicksand', sans-serif;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-box {
  flex: 1;
  min-width: 200px;
}

.footer-box h3 {
  color: #c13584;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.footer-box p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
}

/* Logo styling */
.footer-logo-img {
  transform: scale(2.0);
  width: 80px;
  height: 120px;
  height: auto;
}

/* Social icons */
.social-icons i {
  font-size: 1.4rem;
  margin-right: 1.3rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.social-icons i:hover {
  transform: scale(1.6);
}

.social-icons .fa-linkedin {
  color: #0077b5; /* LinkedIn blue */
}

.social-icons .fa-x-twitter {
  color: #000000; /* Twitter (X) black */
  text-shadow: 
    -1px -1px 0 white,  
     1px -1px 0 white,
    -1px  1px 0 white,
     1px  1px 0 white;
}

.social-icons .fa-facebook-f {
  color: #1877f2; /* Facebook blue */
}

.social-icons .fa-instagram {
  color: #e1306c; /* Instagram pinkish red */
}

