.body {
    background-color: black;
}
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

.sustainability {
    color: #e0e0e0;
    max-width:1000px;
    margin: 69px auto;
    background-color: #1a1a1a;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.1);
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

.sustainability h1 {
    background-color: #2e8b57;
    color: #ffffff;
    padding: 20px;
    margin: 0;
    text-align: center;
}
/* 
.content {
    padding: 20px;
} */

.forest-item {
    margin-bottom: 10px;
    border: 1px solid #333333;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.forest-item:nth-child(6) {
    margin-bottom: 0px;
}

.forest-item h2 {
    color: #4caf50;
    margin: 0;
    padding: 15px;
    cursor: pointer;
}

.forest-item-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.forest-item:hover .forest-item-content {
    max-height: 1000px;
    /* Adjust this value based on your content */
}

.forest-item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.forest-item p {
    line-height: 1.6;
    color: #cccccc;
    padding: 0 15px 15px;
    margin: 0;
}

.damage {
    background-color: black;
    color: #e0e0e0;
    padding: 2rem;
    font-family: Arial, sans-serif;
}

.damage h2 {
    color: #4CAF50;
    font-size: 2.7rem;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.damage-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro,
.conclusion {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.damage-facts {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.damage-facts li {
    margin-bottom: 1.4rem;
    transition: transform 0.3s ease;
}

.damage-facts li:hover {
    transform: translateX(10px);
}

.highlight {
    color: #FFA500;
    font-weight: bold;
}

.damage-images {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 2rem;
}

figure {
    width: 30%;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

figure:hover {
    transform: scale(1.05);
}

img {
    height: 150px;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

figcaption {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    color: #bbbbbb;
    text-align: center;
}

@media (max-width: 768px) {
    figure {
        width: 100%;
    }
}

/* Engagement Section Styles */
.engagement {
    background-color: black;
    /* Darker background */
    padding: 70px 1rem;
    /* margin-top: 3rem; */
    border-radius: 10px;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    /* Light text color */
}

.engagement h2 {
    color: #4CAF50;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.engagement-content {
    max-width: 1000px;
    margin: 0 auto;
}

.action-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.action-item {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 10px;
    width: calc(33.333% - 1rem);
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

.action-item h3 {
    color: #4CAF50;
    margin-bottom: 1rem;
}

.action-item p {
    color: #bbb;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .action-item {
        width: 100%;
    }
}

.cta-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.action-item a{
    text-decoration: none;
}

.cta-button:hover {
    background-color: #45a049;
}

.user-submissions h3 {
    color: #4CAF50;
    text-align: center;
    margin-bottom: 1.5rem;
}

.submission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.submission {
    background-color: #1a1a1a;
    /* Slightly lighter than the section background */
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.submission img {
    width: 100%;
    max-width: 150px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    border: 3px solid #4CAF50;
    /* Green border for images */
}

.submission p {
    font-size: 0.9rem;
    color: #bbb;
    /* Slightly muted text color */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .submission-grid {
        grid-template-columns: 1fr;
    }
}

/* #showIcons {
    position: relative;
    z-index: 2;
    padding: 10px 20px;
    font-size: 18px;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  } */
  /* #showIcons:hover {
    background-color: #34495e;
  } */
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 9;
  }
  .socialmedia {
    display: none;
    background-color:#121212;
    padding: 30px;
    border-radius: 10px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .socialmedia .icon {

    text-align: center;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 2;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .socialmedia .icon span {
    display: block;
    height: 60px;
    width: 60px;
    background: #131313;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .socialmedia .icon span i {
    line-height: 60px;
    font-size: 25px;
    color: #fff;
  }
  .socialmedia .icon .tooltip {
    position: absolute;
    top: 0;
    z-index: 1;
    background: #fff;
    color: #fff;
    padding: 10px 18px;
    font-size: 20px;
    font-weight: 500;
    border-radius: 25px;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .socialmedia .icon:hover .tooltip {
    top: -70px;
    opacity: 1;
    pointer-events: auto;
  }
  .icon .tooltip:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    background: #fff;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%) rotate(45deg);
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .socialmedia .icon:hover span {
    color: #fff;
  }
  .socialmedia .icon:hover span,
  .socialmedia .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0,0,0,0.4);
  }
  .socialmedia .facebook:hover span,
  .socialmedia .facebook:hover .tooltip,
  .socialmedia .facebook:hover .tooltip:before {
    background: #3B5999;
  }
  .socialmedia .twitter:hover span,
  .socialmedia .twitter:hover .tooltip,
  .socialmedia .twitter:hover .tooltip:before {
    background: #46C1F6;
  }
  .socialmedia .instagram:hover span,
  .socialmedia .instagram:hover .tooltip,
  .socialmedia .instagram:hover .tooltip:before {
    background: #e1306c;
  }
  .socialmedia .whatsapp:hover span,
  .socialmedia .whatsapp:hover .tooltip,
  .socialmedia .whatsapp:hover .tooltip:before {
    background: #25D366;
  }
  .socialmedia .telegram:hover span,
  .socialmedia .telegram:hover .tooltip,
  .socialmedia .telegram:hover .tooltip:before {
    background: #0088cc;
  }
  .socialmedia .youtube:hover span,
  .socialmedia .youtube:hover .tooltip,
  .socialmedia .youtube:hover .tooltip:before {
    background: #DE463B;
  }

.footer {
    background-color: #121212;
    padding: 70px 0;
}

.container {
    max-width: 1170px;
    margin: auto;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
}

.footer-col {
    width: 25%;
    padding: 0 15px;
}

.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #4CAF50;
    height: 2px;
    width: 50px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #bbbbbb;
    text-decoration: none;
    font-weight: 300;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer-col .social-links {
    display: flex;
    gap: 10px;
}

.footer-col .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-col .social-links a:hover {
    color: #fff;
    background-color: #1a1a1a;
}

.footer-col .social-links a i {
    font-size: 18px;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins: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&family=Roboto+Slab:wght@100..900&display=swap');

.footer-col .social-links .email-icon,
.footer-col .social-links .phone-icon {
    position: relative;
}

.footer-col .social-links .email-icon .email-address,
.footer-col .social-links .phone-icon .phone-number {
    font-family: Poppins,"Roboto Slab", serif;
    display: block;
    position: absolute;
    background-color: #4CAF50;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    margin-bottom: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.footer-col .social-links .email-icon:hover .email-address,
.footer-col .social-links .phone-icon:hover .phone-number {
    opacity: 1;
    visibility: visible;
    bottom: 100%;
}

.footer-col .social-links .email-icon .email-address::after,
.footer-col .social-links .phone-icon .phone-number::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #4CAF50 transparent transparent transparent;
}

.footer-col .social-links .email-icon i,
.footer-col .social-links .phone-icon i {
    transition: transform 0.3s ease;
}

.footer-col .social-links .email-icon:hover i,
.footer-col .social-links .phone-icon:hover i {
    transform: scale(1.1);
}
@media(max-width: 1000px) {
    .footer-row{
        padding-left: 10%;
    }
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media(max-width: 600px) {
    .footer-col {
        width: 100%;
    }
}
