* {
    box-sizing: content-box;
}

:root {
    --bg: #051d1b;
    --tc1: #fffafa;
    --bgcards: rgba(5, 35, 30, 0.5);
    --bgsection1: #0d2b22;
    --fontlight: #fffafa;
    --fontdark: #051d1b;
    --commonradius:0px;
  }

body {
    color: var(--tc1);
    
    background: var(--bg);
    padding: 0px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;

/* Sliding Banner Styles */
.sliding-banner {
    background-color: rgba(5, 29, 27, 0.8);
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 250, 250, 0.2);
    border-bottom: 1px solid rgba(255, 250, 250, 0.2);
}

.banner-text {
    white-space: nowrap;
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--fontlight);
    text-transform: uppercase;
    letter-spacing: 2px;
    will-change: transform;
}

.banner-text span {
    display: inline-block;
    padding-right: 3rem;
}

.banner-text span::after {
    content: "•";
    margin-left: 3rem;
    color: #84ff92;
    opacity: 0.8;
}

/* Word-by-word reveal banner styles */
.word-reveal-banner {
    position: relative;
    width: 100%;
    padding: 120px 0;
    background-color: rgba(5, 29, 27, 0.95);
    color: var(--fontlight);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    z-index: 2;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.word-reveal-text {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.6;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.word-reveal-text .word {
    opacity: 0;
    display: inline-block;
    margin: 0 0.3rem 0.5rem;
    transform: translateY(20px);
    will-change: opacity, transform;
}

.word-reveal-text strong {
    color: #84ff92;
    font-weight: 600;
}

.content_feat{
    DISPLAY: GRID;
    GRID-TEMPLATE-COLUMNS: 1FR 1FR;
    GRID-GAP: 1REM;
}

.content_feat .feats_list{
    PADDING: 10PX;
    BORDER: 1px dashed rgba(132, 255, 146, 0.3);
}

.feats_list H4{
    MARGIN-TOP: 5PX;
}


.animation-container {
  position: relative;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
  transition: border-color 0.3s ease;
}

.animation-container:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.animation-title {
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
}

.circle-container {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dot {
  position: absolute;
  border-radius: 50%;
  background: #fff;
}

.line {
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  transform-origin: 0% 50%;
}

.circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Corner decorations */
.corner {
  position: absolute;
  width: 16px;
  height: 16px;
  color: white;
  opacity: 0;
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.animation-container:hover .corner {
  opacity: 1;
}

.top-left {
  top: -8px;
  left: -8px;
  transition-delay: 0s;
}

.top-right {
  top: -8px;
  right: -8px;
  transform: rotate(90deg);
  transition-delay: 0.1s;
}

.bottom-left {
  bottom: -8px;
  left: -8px;
  transform: rotate(-90deg);
  transition-delay: 0.2s;
}

.bottom-right {
  bottom: -8px;
  right: -8px;
  transform: rotate(180deg);
  transition-delay: 0.3s;
}

/* Animation keyframes */
@keyframes orbit {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes reverseOrbit {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(0.8);
    opacity: 0.3;
  }
}

@keyframes ripple {
  0% {
    transform: scale(0.1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}


@media (max-width: 768px) {
    .word-reveal-banner {
        padding: 80px 0;
    }
    
    .word-reveal-text {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .word-reveal-banner {
        padding: 60px 0;
    }
    
    .word-reveal-text {
        font-size: 1.5rem;
    }
}

    font-weight: 400;
    /* line-height: 170%; */
    margin: 0px;
   
    
}

.background-top{
    filter: invert(100%);
    -webkit-filter: invert(100%);
    z-index: -1;
    background-image: url(unblock_research.svg);
    background-size: 53vw;
    background-repeat: no-repeat;
    background-position: 98% 6%;
    position: absolute;
    top: 10%;
    height: 100vh;
    width: 100vw;
}


a {
    text-decoration: none;
    color: #fffafa;
}

section {
    width: 100%;
    clear: both;
}

/* Remove space from empty sections */
section:empty {
    height: 0;
    margin: 0;
    padding: 0;
    display: none;
}

/* Issues section styling */
#theIssues {
    margin-bottom: 0;
    padding-bottom: 20px;
}

.col-1 {
    width: 8.3%;
    float: left;
}

.col-2 {
    width: 16.6%;
    float: left;
}

.col-3 {
    width: 25%;
    float: left;
}

.col-4 {
    width: 33.333%;
    float: left;
}

.col-5 {
    width: 41.5%;
    float: left;
}


.col-6 {
    width: 50%;
    float: left;
}

.col-7 {
    width: 58.1%;
    float: left;
}


.col-8 {
    width: 66.33%;
    ;
    float: left;
}


.col-9 {
    width: 75%;
    float: left;
}

.col-10 {
    width: 83%;
    float: left;
}


.col-11 {
    width: 92%;
    float: left;
}

.col-12 {
    width: 100%;
    float: left;
}


.button {
    border: 1px solid #fffafa;
    float: left;
    padding: 10px 25px;
    font-size: 13px;
}

header.global-header {
    width: 100%;
    height: 50px;
    position: absolute;
    top: 10px;
}

.sub-nav {
    display: none;
}

.nav-list {
    position: relative;
}

.nav-list:hover>.sub-nav {
    display: block;
}

.sub-nav {
    position: absolute;
        list-style: none;
    border: 1px dashed green;
    border-top: none;
    margin-top: 3px;
    width: 100%;
}
.sub-nav li {
        line-height: 3;
}
.nav-pill {
    width: 536px;
    font-size: 13px;
    border: 1px dashed rgba(132, 255, 146, 0.3);
    height: 30px;
    margin: 11px auto;
    display: flex;
    line-height: 2.2;
    padding: 1px 10px;
    text-transform: uppercase;
}

.logo_unblock {
    font-weight: 800;
    font-size: 20px;
        line-height: 1.5;
}


.header-hd {
    border-bottom: 1px solid #333;
    text-align: center;
    padding: 1em 0 3em;
}

.header-logo h2 {
    font-size: 21px;
    font-weight: 600;
    text-transform: lowercase;
}

.align-items-center {
    text-align: center;
}


.row-flex {
    display: flex;

}


#landing {
    margin: 7%;
    width: 86%;
    position: relative;
    overflow: hidden;
}

.hero-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.4;
}

#landing .container {
  position: relative;
  z-index: 2;
}

#landing .row-flex {
  position: relative;
  z-index: 2;
}

.pulse-effect {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: rgba(132, 255, 146, 0.05);
  animation: pulse 5s infinite linear;
  top: 50%;
  right: 10%;
  z-index: 1;
}

#landing h1 {
    font-size: 168px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 0px;
    margin-top: 7vh;
}

#landing h2 {
    line-height: 1.8;
    margin-bottom: 0px;
}

#landing p {
    font-weight: 200;
    font-size: 15px;
    margin: 7px 0px 31px;
}

#thePlatform {
   background: #0d2b22;
    color: rgba(255, 255, 255, 0.8);
    margin: auto;
    width: 88%;
    float: none;
    box-sizing: border-box;
    padding: 1em;
    max-width: 1200px;
}

.container-participants {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 3em;
    border-bottom: 1px solid #333;
    padding: 3em 20px;
}

.theframe iframe {
    width: 900px;
    margin: 4em auto;
    height: 1500px;
    display: block;
    border: 1px solid #333;
    float: none;
    max-width: 100%;
}

#vision{
    background: #0d2b22;
    color: var(--fontlight);
    margin: 7% auto;
    width: 86%;
    float: none;
    box-sizing: border-box;
    padding: 3em 1em 1em;
    text-align: center;
    max-width: 1200px;

}

#vision h2{
    font-size: 56px;
    text-transform: uppercase;
    color: var(--fontlight);
    line-height: 1.2;
    margin: 0px auto 0px;
    font-weight: 200;
    width: 83%;
}

#vision h4 {
    width: 93%;
    margin: 2em auto 0;
}

.container-vision{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1em;
    text-align: center;
    margin-top: 3em;
}

.container-vision .col-md-4{
   background: #092720;
    padding: 1em;
    border: 1px dashed rgba(132, 255, 146, 0.3);
}

.container-vision .col-md-4 h3{
    margin: 0px 0px 21px;
    line-height: 1.3;
    font-size: 16px;
}

.container-vision .col-md-4 p{
font-size: 14px;
    line-height: 1.5;
}

.container-vision .col-md-4 > div{
    margin: auto;
}

.nucleus_anim{
    text-align: center;
    width: 100%;
    margin: auto;
    float: left;
    padding-bottom: 7em;
}

.nucleus_anim css-doodle{
    margin: auto;
}

img.infographic-image {
    width: 100%;
    filter: invert(1);
}

.infographic svg{
    max-width: 100%;;
}

.infoexp{
    BACKGROUND: #092720;
    PADDING: 1em;
    MARGIN-LEFT: 24PX;
    border: 1px dashed rgba(132, 255, 146, 0.3);
}

.hovExplainer h2{
    MARGIN: 0PX;
}

/* .hovExplainer p{
    TEXT-ALIGN: LEFT;
} */

.part_whole{
    margin-top: 1em;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1em;
    text-align: left;
}

.parts_block {
   background: #092720;
    border-radius: var(--commonradius);
    padding: 12px;
    DISPLAY: INLINE-FLEX;
    GAP: 2em;
    padding: 1em;
    border: 1px dashed rgba(132, 255, 146, 0.3);
}

.parts_block .image{
    width: 30%;
}

.parts_block .image img{
    width: 100%;
    height: auto;
        filter: invert(1);
}
.parts_block .image svg{
    width: 100%;
    height: auto;
}
.parts_block .image svg path{
    fill: var(--fontdark);
}
.parts_block .image svg rect{
    fill: var(--fontdark);
}
.parts_block .image svg circle{
    fill: var(--fontdark);
}
.parts_block .image svg polygon{
    fill: var(--fontdark);
}
.parts_block .image svg ellipse{
    fill: var(--fontdark);
}
.parts_block .image svg line{
    stroke: var(--fontdark);
}
.parts_block .image svg polyline{
    stroke: var(--fontdark);
}
.parts_block .image svg path:hover{
    fill: var(--bg);
}
.parts_block .image svg rect:hover{
    fill: var(--bg);
}
.parts_block .image svg circle:hover{
    fill: var(--bg);
}
.parts_block .image svg polygon:hover{
    fill: var(--bg);
}
.parts_block .image svg ellipse:hover{
    fill: var(--bg);
}
.parts_block .image svg line:hover{
    stroke: var(--bg);
}
.parts_block .image svg polyline:hover{
    stroke: var(--bg);
}
.parts_block .image svg:hover{
    fill: var(--bg);
    stroke: var(--bg);
}
.parts_block .image svg:hover path{
    fill: var(--bg);
}
.parts_block .image svg:hover rect{
    fill: var(--bg);
}
.parts_block .image svg:hover circle{
    fill: var(--bg);
}


.parts_block .content {
    width: 70%;
}


#thePlatform p{font-size: 14px;line-height: 1.5;}
#thePlatform h3{
    margin-top: 0px;
    margin-bottom: 0px;
    font-weight: 300;
}

.four_parts_block {
    display: grid;
    gap: 1em;
    width: 100%;
    grid-template-columns: 1fr 1fr;
}

.onefourth_parts_block {
    flex: 1;
    background-color: var(--bgcards);
    border-radius: var(--commonradius);
    padding: 1em;
    border: 1px dashed rgba(132, 255, 146, 0.3);
}

/* Footer Styles */
.global-footer {
    background-color: var(--bg);
    color: var(--fontlight);
    padding: 60px 0 30px;
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-hd {
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-nav {
    padding: 0 20px;
}

.footer-nav h4 {
    color: var(--fontlight);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a {
    color: var(--fontlight);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-nav ul li a:hover {
    opacity: 1;
    text-decoration: none;
}

.footer-social {
    text-align: right;
}

.footer-social ul.list {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin: 0;
}

.footer-social ul.list li a {
    color: var(--fontlight);
    font-size: 20px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-social ul.list li a:hover {
    opacity: 1;
}

.footer-copyright {
    opacity: 0.8;
    font-size: 14px;
}

.footer-ft {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.line-diagram {
  width: 100%;
  height: 80px;
  margin-top: 1em;
  stroke-width: 2;
}

.container-vision .col-md-4 .line-diagram {
  color: var(--fontdark);
  transition: color 0.3s ease;
}

.container-vision .col-md-4:hover .line-diagram {
  color: var(--bg);
}

/* Import enhanced footer styles */
@import url('footer-styles.css');/* Enhanced Footer Styles */
.global-footer {
  background-color: var(--bg);
  color: var(--fontlight);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 0;
  font-size: 16px;
  box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

/* Subtle animated background pattern */
.global-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(132, 255, 146, 0.03) 0%, transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(132, 255, 146, 0.03) 0%, transparent 50%);
  opacity: 0.5;
  z-index: 0;
}

.footer-main {
  padding: 40px 0 30px;
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  padding: 0 15px;
  margin-bottom: 30px;
}

.about-col {
  flex: 0 0 33%;
}

.nav-col {
  flex: 0 0 18%;
}

.contact-col {
  flex: 0 0 25%;
}

.footer-logo h3 {
  font-size: 28px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-about p {
  margin-bottom: 25px;
  line-height: 1.6;
  opacity: 0.8;
  font-size: 15px;
}

.social-links {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 15px;
}

.social-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 18px;
  transition: all 0.3s ease;
  background-color: rgba(132, 255, 146, 0.05);
}

.social-links li a:hover {
  background-color: #84ff92;
  color: var(--bg);
  border-color: #84ff92;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(132, 255, 146, 0.3);
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 25px;
  position: relative;
  margin-top: 0;
}

.footer-col h4:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 2px;
  width: 30px;
  background-color: #84ff92;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav li a {
  color: var(--fontlight);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-nav li a:hover {
  opacity: 1;
  color: #84ff92;
  padding-left: 5px;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  opacity: 0.8;
}

.contact-info li i {
  margin-right: 10px;
  color: #84ff92;
  font-size: 18px;
}

.newsletter h4 {
  margin-top: 15px;
}

.newsletter-form {
  display: flex;
  margin-top: 15px;
  position: relative;
}

.newsletter-form input {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 4px;
  color: var(--fontlight);
  font-family: inherit;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 45px;
  background-color: #84ff92;
  color: var(--bg);
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #6de87d;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.copyright p {
  margin: 0;
  opacity: 0.7;
  font-size: 14px;
}

.footer-bottom-links ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom-links ul li {
  margin-left: 20px;
}

.footer-bottom-links ul li a {
  color: var(--fontlight);
  opacity: 0.7;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-bottom-links ul li a:hover {
  opacity: 1;
  color: #84ff92;
}



.comet {
	position: relative;
	display: block;
	margin: auto;
	padding-right: 2rem;
	padding-left: 2rem;
	font-size: 0.8rem;
	font-weight: 900;
	line-height: 4rem;
	text-transform: uppercase;
	letter-spacing: 6px;
	color: var(--fontlight);
	background-color: rgba(41, 255, 106, 0);
	background-image: linear-gradient(150deg, rgba(41, 255, 106, 0.2), rgba(41, 255, 106, 0.1));
	background-size: calc(100% - 15px) calc(100% - 15px);
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
	user-select: none;
	box-shadow: 0 0 0 1px rgba(41, 255, 106, 0.1), inset 0 0 0 1px rgba(41, 255, 106, 0.1);
	transform: translateZ(0);
	transition: transform 0.1s;
        WIDTH: AUTO;
    FLOAT: LEFT;
  
}

.comet:hover {
	background-color: #29ff6a;
    color:#333;
}

.comet:hover a{
color:#333;
}

.comet:active {
	transform: scale(0.9);
    color:#333;
}

.comet:before,
.comet:after
 {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 4px;
	width: 4px;
	background-color: #29FF6A;
	animation-name: comet;
	animation-iteration-count: infinite;
	animation-play-state: running;
	animation-timing-function: linear;
	animation-delay: -0.3;
	border-radius: 50%;
	opacity: 1;
	transform: translateX(-50%) translateY(-50%) scale(1);
	transition: all 4s;
}

.comet:before {
	animation-duration: 2s;
}

.comet:after {
	animation-duration: 2.5s;
}

.comet:hover:before,
.comet:hover:after {
	opacity: 0;
	filter: blur(2px);
	transform: translateX(-50%) translateY(-50%) scale(2);
	box-shadow: 0 0 15px 1px #29FF6A, 0 0 2px rgba(41, 255, 106, 0.7), 0 0 2px rgba(41, 255, 106, 0.5), 0 0 2px rgba(41, 255, 106, 0.3), 0 0 1px rgba(41, 255, 106, 0.25);
	transition: all 0.7s;
}

.btn_center {
    text-align: center;
    float: none;
    width: 310px;
    margin: 3em auto 2em;
}

@keyframes comet {
	0% {
		top: 0;
		left: 0;
		box-shadow: 0 0 15px 1px #29FF6A, 0 0 2px rgba(41, 255, 106, 0.7), 0 0 2px rgba(41, 255, 106, 0.5), 0 0 2px rgba(41, 255, 106, 0.3), 0 0 1px rgba(41, 255, 106, 0.25);
		animation-timing-function: ease-in;
	}

	15% {
		top: 0;
		left: 50%;
		box-shadow: 0 0 15px 1px #29FF6A, -4px 0 2px rgba(41, 255, 106, 0.7), -8px 0 2px rgba(41, 255, 106, 0.5), -12px 0 2px rgba(41, 255, 106, 0.3), -14px 0 1px -1px rgba(41, 255, 106, 0.25);
		animation-timing-function: ease-out;
	}

	30% {
		top: 0;
		left: 100%;
		box-shadow: 0 0 15px 1px #29FF6A, 0 0 2px rgba(41, 255, 106, 0.7), 0 0 2px rgba(41, 255, 106, 0.5), 0 0 2px rgba(41, 255, 106, 0.3), 0 0 1px rgba(41, 255, 106, 0.25);
		animation-timing-function: ease-in;
	}

	40% {
		top: 50%;
		left: 100%;
		box-shadow: 0 0 15px 1px #29FF6A, 0 -4px 2px rgba(41, 255, 106, 0.7), 0 -8px 2px rgba(41, 255, 106, 0.5), 0 -12px 2px rgba(41, 255, 106, 0.3), 0 -14px 1px rgba(41, 255, 106, 0.25);
		animation-timing-function: ease-out;
	}

	50% {
		top: 100%;
		left: 100%;
		box-shadow: 0 0 15px 1px #29FF6A, 0 0 2px rgba(41, 255, 106, 0.7), 0 0 2px rgba(41, 255, 106, 0.5), 0 0 2px rgba(41, 255, 106, 0.3), 0 0 1px rgba(41, 255, 106, 0.25);
		animation-timing-function: ease-in;
	}

	65% {
		top: 100%;
		left: 50%;
		box-shadow: 0 0 15px 1px #29FF6A, 4px 0 2px rgba(41, 255, 106, 0.7), 8px 0 2px rgba(41, 255, 106, 0.5), 12px 0 2px rgba(41, 255, 106, 0.3), 14px 0 1px rgba(41, 255, 106, 0.25);
		animation-timing-function: ease-out;
	}

	80% {
		top: 100%;
		left: 0;
		box-shadow: 0 0 15px 1px #29FF6A, 0 0 2px rgba(41, 255, 106, 0.7), 0 0 2px rgba(41, 255, 106, 0.5), 0 0 2px rgba(41, 255, 106, 0.3), 0 0 1px rgba(41, 255, 106, 0.25);
		animation-timing-function: ease-in;
	}

	90% {
		top: 50%;
		left: 0;
		box-shadow: 0 0 15px 1px #29FF6A, 0 4px 2px rgba(41, 255, 106, 0.7), 0 8px 2px rgba(41, 255, 106, 0.5), 0 12px 2px rgba(41, 255, 106, 0.3), 0 14px 1px rgba(41, 255, 106, 0.25);
		animation-timing-function: ease-out;
	}

	100% {
		top: 0;
		left: 0;
		box-shadow: 0 0 15px 1px #29FF6A, 0 0 2px rgba(41, 255, 106, 0.7), 0 0 2px rgba(41, 255, 106, 0.5), 0 0 2px rgba(41, 255, 106, 0.3), 0 0 1px rgba(41, 255, 106, 0.25);
		animation-timing-function: ease-in;
	}
}


@media (max-width: 991px) {
  .about-col {
    flex: 0 0 100%;
  }
  
  .nav-col {
    flex: 0 0 45%;
  }
  
  .contact-col {
    flex: 0 0 100%;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .footer-row {
    flex-direction: column;
  }
  
  .footer-col {
    flex: 0 0 100%;
    padding: 0;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links ul {
    justify-content: center;
    margin-top: 15px;
  }
  
  .footer-bottom-links ul li {
    margin: 0 10px;
  }
}
/* Cleaned and optimized CSS: removed repetitive rules, merged selectors, and improved structure */


h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin: 0 0 0.5em 0;
}

p {
    margin: 0 0 1em 0;
    line-height: 1.6;
}

a {
    color: #b8f6db;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover, a:focus {
    color: #005fa3;
    text-decoration: none;
}

.container, .section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2em 1em;
}

.section {
    margin-bottom: 2em;
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    margin: 0 0 1em 2em;
    padding: 0;
}

li {
    margin-bottom: 0.5em;
}

button, .btn {
    background: #0077cc;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0.5em 1.5em;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
}

button:hover, .btn:hover, button:focus, .btn:focus {
    background: #005fa3;
    outline: none;
}

/* Team Section Styles */
.team-section {
  padding: 80px 0;
  background-color: rgba(5, 29, 27, 0.7);
  position: relative;
  overflow: hidden;
}

.team-section .container {
    position: relative;
    background: #08231e;
    box-sizing: border-box;
    padding-top: 1em;
        padding-bottom: 1em;
}

.team-section h2 {
  text-align: center;
  margin-bottom: 50px;
  font-weight: 400;
  font-size: 2.5rem;
  letter-spacing: 1px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  background-color: rgba(5, 35, 30, 0.5);
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px dashed rgba(132, 255, 146, 0.3);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(132, 255, 146, 0.2);
}

.team-member-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.team-member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: grayscale(20%);
}

.team-member:hover .team-member-img img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.team-member-info {
  padding: 20px;
  text-align: center;
}

.team-member-name {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--fontlight);
}

.team-member-role {
  font-size: 0.9rem;
  color: #84ff92;
  margin-bottom: 12px;
  font-weight: 300;
}

.team-member-bio {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.team-member-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team-member-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--fontlight);
  font-size: 14px;
  transition: all 0.3s ease;
}

.team-member-links a:hover {
  background-color: #84ff92;
  color: var(--bg);
  transform: translateY(-3px);
}

/* "Join the Team" box */
.join-team-box {
  margin-top: 50px;
  background-color: rgba(132, 255, 146, 0.1);
  
  padding: 30px;
  text-align: center;
  border: 1px dashed rgba(132, 255, 146, 0.3);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.join-team-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 0 15px rgba(132, 255, 146, 0.1);
}

.join-team-box h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 15px;
}

.join-team-box p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.join-team-btn {
  display: inline-block;
  background-color: #84ff92;
  color: var(--bg);
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.join-team-btn:hover {
  background-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(132, 255, 146, 0.3);
}

/* Roadmap Section Styles */
.roadmap-section {
  padding: 80px 0;
  position: relative;
}

.roadmap-section h2 {
  text-align: center;
  margin-bottom: 50px;
  font-weight: 400;
  font-size: 2.5rem;
  letter-spacing: 1px;
}

.roadmap-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.roadmap-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, 
    rgba(132, 255, 146, 0.3), 
    rgba(132, 255, 146, 0.8), 
    rgba(132, 255, 146, 0.3));
  transform: translateX(-50%);
  z-index: 1;
}

.roadmap-item {
  display: flex;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.roadmap-item:nth-child(even) {
  flex-direction: row-reverse;
}

.roadmap-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #84ff92;
  flex: 0 0 20px;
  margin: 0 25px;
  position: relative;
  z-index: 3;
  box-shadow: 0 0 0 6px rgba(132, 255, 146, 0.2);
}

.roadmap-item:hover .roadmap-dot {
  transform: scale(1.2);
  box-shadow: 0 0 0 8px rgba(132, 255, 146, 0.3), 0 0 20px rgba(132, 255, 146, 0.5);
}

.roadmap-content {
  flex: 0 0 calc(50% - 70px);
  background-color: rgba(5, 35, 30, 0.5);
  /* border-radius: 8px; */
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(132, 255, 146, 0.1);
  position: relative;
}

.roadmap-item:hover .roadmap-content {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(132, 255, 146, 0.2);
}

.roadmap-date {
  display: inline-block;
  padding: 5px 15px;
  background-color: rgba(132, 255, 146, 0.2);
  /* border-radius: 20px; */
  font-size: 0.85rem;
  margin-bottom: 10px;
  color: #84ff92;
}

.roadmap-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.roadmap-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.roadmap-status {
  position: absolute;
  right: 20px;
  top: 20px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.status-completed {
  background-color: rgba(132, 255, 146, 0.2);
  color: #84ff92;
}

.status-in-progress {
  background-color: rgba(255, 199, 0, 0.2);
  color: #ffc700;
}

.status-planned {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* Enhanced Hero Section Styles */
#landing {
  position: relative;
  overflow: hidden;
}

.hero-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.4;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(132, 255, 146, 0.1);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.pulse-effect {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: rgba(132, 255, 146, 0.05);
  animation: pulse 5s infinite linear;
  top: 50%;
  right: 10%;
}

.pulse-effect::before,
.pulse-effect::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(132, 255, 146, 0.05);
  animation: pulse 5s infinite linear;
}

.pulse-effect::before {
  animation-delay: 1s;
}

.pulse-effect::after {
  animation-delay: 2s;
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0.2;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Enhanced Call-to-Action Buttons */
.cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.cta-primary {
  background-color: #84ff92;
  color: var(--bg);
  box-shadow: 0 5px 15px rgba(132, 255, 146, 0.2);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(132, 255, 146, 0.4);
}

.cta-secondary {
  background-color: transparent;
  color: var(--fontlight);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 767px) {
  .team-section {
    padding: 60px 0;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
  }
  
  .team-member-img {
    height: 200px;
  }
}

@media (max-width: 575px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .team-member-img {
    height: 180px;
  }
}

/* Responsive adjustments for roadmap */
@media (max-width: 767px) {
  .roadmap-line {
    left: 20px;
  }
  
  .roadmap-item,
  .roadmap-item:nth-child(even) {
    flex-direction: row;
  }
  
  .roadmap-dot {
    margin: 0 20px 0 0;
  }
  
  .roadmap-content {
    flex: 0 0 calc(100% - 50px);
  }
}

/* Mobile responsiveness improvements */
@media (max-width: 991px) {
  .team-section h2,
  .roadmap-section h2 {
    font-size: 2rem;
  }
  
  .word-reveal-text {
    font-size: 2rem;
  }
  
  .pulse-effect {
    display: none;
  }
}

@media (max-width: 767px) {
  .cta-buttons {
    justify-content: center;
  }
  
  .word-reveal-text {
    font-size: 1.5rem;
  }
  
  .word-reveal-banner {
    padding: 80px 0;
  }
  
  .roadmap-section,
  .team-section {
    padding: 60px 0;
  }
}

@media (max-width: 575px) {
  .cta-primary,
  .cta-secondary {
    width: 100%;
    text-align: center;
  }
}
/* Enhanced styles for infrastructure, issuesDiv, and beneficiaries sections */

/* Infrastructure Section Styles */
.infrastructure {
  background: var(--bg);
  color: var(--fontlight);
  margin: 4% auto;
  width: 88%;
  box-sizing: border-box;
  padding: 1em;
  max-width: 1200px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 50px rgba(5, 29, 27, 0.5);
}

.infrastructure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(132, 255, 146, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(132, 255, 146, 0.08) 0%, transparent 50%);
  opacity: 0.7;
  z-index: 0;
}

.infrastructure > * {
  position: relative;
  z-index: 1;
}

.infrastructure h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0px auto 30px;
  font-weight: 300;
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(132, 255, 146, 0.2);
}

.infrastructure p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.infra {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: 1em;
}

.infra_block {
  background: rgba(5, 35, 30, 0.5);
  padding: 1.8em;
  border: 1px dashed rgba(132, 255, 146, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.infra_block::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(132, 255, 146, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.infra_block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(132, 255, 146, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.infra_block:hover::after {
  opacity: 1;
}

.infra_block h3 {
  margin: 0 0 15px 0;
  font-weight: 400;
  color: #84ff92;
  font-size: 1.2rem;
  position: relative;
}

.infra_block p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
  color: rgba(255, 255, 255, 0.8);
}

/* Issues Section Styles */
.issuesDiv {
  background: #0a2620;
  color: var(--fontlight);
  margin: 4% auto;
  width: 88%;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
  padding: 1em;
  box-sizing: border-box;
  box-shadow: inset 0 0 50px rgba(5, 29, 27, 0.5);
}

.issuesDiv > * {
  position: relative;
  z-index: 1;
}

.issues-header,
.solutions-header {
  text-align: center;
}

.issuesDiv h2 {
  font-size: 2rem;
  text-align: center;
  margin: 0 0 1.5rem 0;
  font-weight: 400;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(132, 255, 146, 0.2);
}

.issues-header h2 {
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}


.solutions-header h2 {
  color: #84ff92;
  position: relative;
  display: inline-block;
}

.solutions-header h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: rgba(132, 255, 146, 0.3);
}

.problem1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    margin-top: 1em;
    text-align: center;
}

.problem-block,
.solution-block {
  flex: 1;
  min-width: 300px;
  background: rgba(5, 35, 30, 0.5);
  padding: 1.8em;
  border: 1px dashed rgba(132, 255, 146, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.problem-block::after,
.solution-block::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(132, 255, 146, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.problem-block:hover,
.solution-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(132, 255, 146, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.problem-block:hover::after,
.solution-block:hover::after {
  opacity: 1;
}

.problem1 h2 {
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 1.4rem;
  position: relative;
}

.problem-block h2 {
  color: #fff;
}

.solution-block h2 {
  color: #84ff92;
}

.problem1 p, 
.problem1 div {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Infrastructure Section Styles */
.infrastructure {
  background: #0a2620;
  color: var(--fontlight);
  margin: 4% auto;
  width: 88%;
  box-sizing: border-box;
  padding: 1em;
  max-width: 1200px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 50px rgba(5, 29, 27, 0.5);
}


.infrastructure > * {
  position: relative;
  z-index: 1;
}

.infrastructure h2, .beneficiaries h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0px auto 30px;
  font-weight: 300;
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(132, 255, 146, 0.2);
}

.infrastructure p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.infra {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: 1em;
}

.infra_block {
  background: rgba(5, 35, 30, 0.5);
  padding: 1.8em;
  border: 1px dashed rgba(132, 255, 146, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.infra_block::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(132, 255, 146, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.infra_block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(132, 255, 146, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.infra_block:hover::after {
  opacity: 1;
}

.infra_block h3 {
  margin: 0 0 15px 0;
  font-weight: 400;
  color: #84ff92;
  font-size: 1.2rem;
  position: relative;
}

.infra_block p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
  color: rgba(255, 255, 255, 0.8);
}

/* Issues Section Styles */
.issuesDiv {
  background: #0a2620;
  color: var(--fontlight);
  margin: 4% auto;
  width: 88%;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
  padding: 1em;
  box-sizing: border-box;
  box-shadow: inset 0 0 50px rgba(5, 29, 27, 0.5);
}


.issuesDiv > * {
  position: relative;
  z-index: 1;
}

.issues-header,
.solutions-header {
  text-align: center;
}

.issuesDiv h1 {
  font-size: 2rem;
  text-align: center;
  margin: 0 0 1.5rem 0;
  font-weight: 400;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(132, 255, 146, 0.2);
}

.issues-header h1 {
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
}

.issues-header h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
}

.solutions-header h1 {
  color: #84ff92;
  position: relative;
  display: inline-block;
}

.solutions-header h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: rgba(132, 255, 146, 0.3);
}

.problem1 {
  display: grid;
grid-template-columns: 1fr 1fr;
  gap: 1em;
  margin-top: 1em;
  text-align: center;
}

.problem-block,
.solution-block {
  flex: 1;
  min-width: 300px;
  background: rgba(5, 35, 30, 0.5);
  padding: 1.8em;
  border: 1px dashed rgba(132, 255, 146, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.problem-block::after,
.solution-block::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(132, 255, 146, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.problem-block:hover,
.solution-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(132, 255, 146, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.problem-block:hover::after,
.solution-block:hover::after {
  opacity: 1;
}

.problem1 h2 {
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 1.4rem;
  position: relative;
}

.problem-block h2 {
  color: #fff;
}

.solution-block h2 {
  color: #84ff92;
}

.problem1 p, 
.problem1 div {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Beneficiaries Section Styles */
.beneficiaries {
  background: #0a2620;
  color: var(--fontlight);
  margin: 4% auto;
  width: 88%;
  box-sizing: border-box;
  padding: 1em;
  max-width: 1200px;
  overflow: hidden;
  position: relative;
  
}


.beneficiaries > * {
  position: relative;
  z-index: 1;
}


.beneficiaries > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.container-participants {
  display: grid;
  grid-template-columns: repeat(1fr, 1fr);
  gap: 1em;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  border: none;
}

.container-participants .col-md-4 {
  background: rgba(5, 35, 30, 0.5);
  border: 1px dashed rgba(132, 255, 146, 0.3);
  padding: 2em 1.5em 1.5em 1.5em;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.container-participants .col-md-4:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.18), 0 0 15px rgba(132,255,146,0.13);
}

.container-participants .col-md-4 h2 {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  color: #84ff92;
  font-weight: 500;
  text-align: left;
}

.container-participants .col-md-4 p {
  flex-grow: 1;
  margin-bottom: 1.2rem;
  line-height: 1.6;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
}

.container-participants .col-md-4 a.btn,
.container-participants .col-md-4 a {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  background: linear-gradient(90deg, #93ffe4 0%, #84ff92 100%);
  color: #051d1b;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
  margin-top: auto;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(132,255,146,0.08);
}

.container-participants .col-md-4 a.btn:hover,
.container-participants .col-md-4 a:hover {
  background: #fff;
  color: #051d1b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(132,255,146,0.18);
}

.container-participants .col-md-4 p.small {
  font-size: 0.75rem;
  margin-top: 1rem;
  color: #84ff92;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}