*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: auto;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    animation: fadeIn 1s ease-in-out;
}

@keyframes slideIn {
    from {
     opacity: 0;
     transform: translateY(-20px);
    }
   to {
     opacity: 1;
    transform: translateY(0);
    }
   }


@keyframes fadeIn {
    from {
      opacity: 0;
     transform: translateY(-20px);
    }
   to {
     opacity: 1;
    transform: translateY(0);
    }
   }


nav {
    width: 100%;
    background-color: #004080;
    color: white;
    padding: 10px 0;
    position: fixed;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navigator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}

.logo img {
    height: 40px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links a {
    margin: 0 15px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.nav-links a:hover {
    text-decoration: none;
    color: #FFD700;
    transition: color 0.3s;
}

.fixed-slogon{
    position: absolute;
    top: 620px;
    left: 550px;
}

.fixed-slogon h1{
    color: white;
    transition: .5s;
}

.fixed-slogon a:hover{
    text-decoration: none;
    transition: .5s;
}

.fixed-slogon h1:hover{
    transform: scale(1.2);
    color: #FFD700;
    transition: .5;
}


#ci-particles {
    background-color: #004080;
    background: url(../assets/imgs/dolphins.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 100%;
    height: 100vh;
    font-weight: 700;
  }
  #ci-particles canvas {
    width: 100vw;
    height: 100vh;
  }

#ci-particles h1{
    opacity: 0;
}

.section {
    padding: 60px 20px;
    min-height: 100vh;
    background: #f0f0f0;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
}

.section h2 {
    font-size: 92px;
    margin-bottom: 20px;
}

.about{
    width: 100%;
    height: 100vh;
}

.section .about-text p {
    font-size: 30px;
}

p.why_p {
    font-size: 30px;
}
.section.visible {
    opacity: 1;
}

.about-container, .why-protect-container {
    width: 100%;
    margin: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
}

.about-text, .why-protect-text {
    flex: 1;
    padding-right: 1rem;
}

.about-image, .why-protect-chart {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
}

.button01 {
    margin-top: 20px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border: none;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
.button01:hover {
    background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px) scale(1.1);
    transition: all 0.3s ease;
}
.button01:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.button01 a:link, a:visited {
    color: white;
    text-decoration: none;
}

.button01 a:hover{
    color: white;
    transform: scale(1.1);
    text-decoration: none;
}

.button01 a:active{
    color: white;
    text-decoration: none;
}

.help-section {
    background: url('../assets/imgs/help-background.jpg') no-repeat center center/cover;
    color: white;
}

.help-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
}

.help-logo img {
    width: 500px;
    transition: 1s;
}

.help-logo img:hover{
    transform: rotateY('180');
    transition: 1s;
}

.help-content {
    border-radius: 20px;
    padding: 50px;
    background-color: #2575fc;
    height: 80%;
    max-width: 500px;
    transition: .5s;
}

.help-content:hover{
    transform: scale(1.1);
    transition: .5s;
}

.donate-button {
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 20px;
    font-size: 18px;
    color: white;
    background-color: #004080;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.donate-button:hover {
    background-color: #002050;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
}

.contact-form button {
    padding: 10px 20px;
    font-size: 18px;
    color: white;
    background-color: #004080;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #002050;
}

.footer-main {
    padding: 92px 0;
    background: #1a1b1f;
  }
  
  @media (max-width: 768px) {
    .footer-main {
      padding: 50px 0;
    }
  }
  
  .footer-main .block img {
    max-width: 300px;
    margin-bottom: 20px;
  }
  
  .footer-main .block img #small-Apps {
    fill: red;
  }
  
  .footer-main .block ul.social-icon li a {
    text-decoration: none;
    display: block;
    width: 38px;
    height: 38px;
    border-radius: 100%;
    background: #3f3f43;
    color: #fff;
    text-align: center;
    line-height: 38px;
  }
  
  @media (max-width: 768px) {
    .footer-main .block {
      margin-bottom: 40px;
    }
  }
  
  .footer-main .block-2 h6 {
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 25px;
  }
  
  .footer-main .block-2 ul {
    padding: 0;
  }
  
  .footer-main .block-2 ul li {
    margin-bottom: 10px;
    list-style: none;
  }
  
  .footer-main .block-2 ul li a {
    font-size: 14px;
    color: #6f6f71;
    transition: .2s ease;
  }
  
  .footer-main .block-2 ul li a:hover {
    color: #fff;
  }
  
  .footer-classic {
    background: #fafafa;
    text-align: center;
    padding: 110px 0;
  }
  
  .footer-classic ul.social-icons {
    margin-bottom: 30px;
  }
  
  @media (max-width: 480px) {
    .footer-classic ul.social-icons li {
      margin-bottom: 10px;
    }
  }
  
  .footer-classic ul.social-icons li a {
    padding: 0 20px;
    display: block;
  }
  
  .footer-classic ul.social-icons li a i {
    font-size: 25px;
    color: #000;
  }
  
  .footer-classic ul.footer-links li a {
    padding: 0 10px;
    display: block;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    color: #000;
  }

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    .header .intro {
        margin: 0 20px;
    }
}

.scroll-top-to {
    position: fixed;
    right: 20px;
    bottom: 50px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #2e7eed;
    color: #fff;
    transition: 0.3s;
    z-index: 999556;
    cursor: pointer;
    display: none;
  }
  
  .scroll-top-to:hover {
    background: #333;
  }
  
  @media (max-width: 768px) {
    .scroll-top-to {
      bottom: 15px;
      right: 15px;
      width: 35px;
      height: 35px;
      line-height: 35px;
    }
  }
