*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}


html {
    overflow-x:hidden; /* Prevent horizontal scrolling */
}
body{
    width: 100%;
	min-height: 100vh;
    color:#2d6a4f;
    background-color: #f5f5f5;
    font-family: 'Oxygen' ,sans-serif;
} 


/* Navbar styling */


.container, .container-header {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: auto;
    background: #fff;
    padding: 5px 2rem;
    border-radius: 2px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100% !important;
    height: 120px;
    max-width: inherit;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgb(185, 180, 180);
}

.logo-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 20px;
    justify-content: center;
    text-align: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.logo img {
    height: 55px;
    width: 55px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.1);
}

.logo p {
    margin-top: 3px;
    font-weight: 600;
    color: rgba(6, 49, 23, 0.959);
    font-size: 16px;
}

nav {
    flex: 1;
    text-align: right;
    margin-top: 23px;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    position: relative;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: rgb(42, 39, 39);
    text-decoration: none;
    font-weight: bold;
    font-size: medium;
    transition: all 0.3s ease-in-out;
    padding: 10px 15px;
    border-radius: 5px;
    position: relative;
}

/* Hover underline effect */
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    width: 0;
    background-color: #0aa148;
    transition: width 0.3s ease-in-out;
}


.nav-links a:hover::after {
    width: 100%;
}

/* Active link with background */
.nav-links a.active {
    background-color: #0aa148;
    color: #fff;
    transition: background-color 0.3s ease-in-out;
}

.nav-links a.active::after {
    background-color: transparent; /* Remove hover line for the active link */
}
.nav-links a:hover{
color: rgb(13, 114, 13);
}



.nav-donate {
    padding: 8px 15px;
    border-radius: 5px;
    animation: blink-bg 2s infinite;
}

/* Keyframes: background-color alternates */
@keyframes blink-bg {
    0%, 50%, 100% { background-color: rgb(255, 0, 0); }
    25%, 75% { background-color: rgb(255, 255, 255); }
}


@media screen and (max-width:1000px) {
    .nav-links li{
        margin-left: 7px;
    }
    .nav-links{
        gap: 5px;
    }
    .nav-links a{
        padding: 5px 8px;
    }
    .nav-links a{
        font-size:14px;
    }
}
@media screen and (max-width:760px) {
    .logo img{
        width: 50px;
        height:50px;
    }
    .logo p{
        font-size: 14px;
    }
}

@media screen and (max-width:700px){
    .nav-links a{
        font-size: 11px;
    }
    .nav-links li{
        margin-left: 3px;
    }
}

@media screen and (max-width:600px){
    
    .fa-bars{
        font-size: x-large;
        color: black;
    }
    .container{
        position: fixed;
    }
    .nav-links {
        position: absolute;
        width: 100%;
        left: 0;
        top: 100%;
        flex-direction: column;
        text-align: center;
        background: linear-gradient(to right, #ccc8c8fa, #ddd9d9);
        overflow: hidden;
        transition: all 0.3s ease-in-out;
        
    }
    
    .nav-links {
        gap: 10px;
    }
    .nav-links a{
        font-size: 12px;
        padding: 8px 0;
        display: block;
        width:100%;
        height: 100%;
    }
    .nav-links li{
        margin-left: 0px;
        width: 100%;
        
    }
    
}
@media screen and (min-width:600px){
    .fa-bars{
        display: none !important;
    }
    
}

@media screen and (max-width:500px){
    .logo img{
        width: 55px;
        height:55px;
    }
    .logo p{
        font-size: 10px;
    }

    .main-body h1{
        margin-left:15px;
        top:25%;
    }

    .main-body-p{
        top: 32%;
        width:55%;
    }

    .main-body-des{
        color:#00412e;
        top:37%;
        width:55% !important;
    }

    .main-body-btn{
        font-size: 16px; 
        padding: 8px 16px; 
        top:67%;
        left:10%
    }

    .top{
        height:70vh;
    }
}
    /* navbar styling end */


    /*main content styling */

.main-container{
    width:100%;
    position: absolute;
    overflow: hidden;
    padding: 160px 0 0 0;

}

  
  .who-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  
  /* TEXT SECTION */
  .who-text {
    flex: 1 1 500px;
  }
  
  .who-text h1 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    border-left: 6px solid #2f684e;
    padding-left: 20px;
    color: #131111;
  }
  
  .who-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #3c3c3c;
    padding-left: 20px;
  }
  
  /* IMAGE SECTION */
  .who-image {
    flex: 1 1 400px;
    text-align: right;
  }
  
  .who-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }
  
  /* RESPONSIVE STACKING */
  @media (max-width: 768px) {
    .who-container {
      flex-direction: column-reverse;
      text-align: center;
      padding: 20px;
    }
  
    .who-text {
      padding: 0;
      margin-top: -200px;

    }
  
    .who-text h1 {
      font-size: 1.6rem;
      border-left: none;
      border-bottom: 3px solid #2f684e;
      padding-left: 0;
      padding-bottom: 10px;
      text-align: left;

    }
  
    .who-text p {
      padding-left: 0;
      font-size: 1rem;
      text-align: justify;
    }

    .who-image{
      max-width:90%;
    }
  }
  

  .about-us {
    max-width: 1200px;
    margin: 10px auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  
  .about-us-heading {
    font-size: 2.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    border-left: 6px solid #2f684e;
    padding-left: 20px;
    
  }
  
  .about-us-text {
    max-width: 1100px;
    margin: auto;
    font-size: 18px;
    color: #434242;
    line-height: 1.8;
  }
  
  .about-us-text section {
    margin-bottom: 40px;
  }
  
  .about-us-text h3 {
    font-size: 24px;
    color: #2d6a4f;
    margin-bottom: 15px;
    font-weight: 600;

  }
  
  .about-us-text .highlight {
    font-weight: bold;
    color: #40916c;
  }
  
  .icon-list {
    list-style: none;
    padding-left: 0;
  }
  
  .icon-list li::before {
    content: "✅";
    margin-right: 10px;
    color: #2d6a4f;
  }
  
  .icon-list li {
    margin-bottom: 10px;
  }
  
  blockquote {
    background-color: #eaf4f4;
    padding: 15px 20px;
    border-left: 5px solid #2d6a4f;
    font-style: italic;
    margin: 20px 0;
  }
  
  .grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .grid-two p {
    margin-bottom: 12px;
  }
  
  @media screen and (max-width: 768px) {
    .grid-two {
      grid-template-columns: 1fr;
    }
  }
  

    /* RESPONSIVE STACKING */
    @media (max-width: 768px) {
      .about-us {
        text-align: center;
        padding: 20px;
        margin-top: -200px;
      }
    
      .about-us-text section {
        padding: 0;
  
      }

      .about-us h2 {
        font-size: 1.6rem;
        border-left: none;
        border-bottom: 3px solid #2f684e;
        padding-left: 0;
        padding-bottom: 10px;
        text-align: left;
  
      }
    
      .about-us-text h3 {
        font-size: 1.6rem;
        border-left: none;
        border-bottom: 3px solid #2f684e;
        padding-left: 0;
        padding-bottom: 10px;
        text-align: left;
  
      }
    
      .about-us-text section p, .icon-list{
        padding-left: 0;
        font-size: 1rem;
        text-align: justify;
      }

      blockquote{
        text-align: left;
      }


    }






/* FontAwesome Icons Styling */
.icon-box {
    background-color: #d1fae5;
    color: #065f46;
    font-size: 40px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: background-color 0.3s ease, color 0.3s ease;

    overflow: hidden;
  }
  
  .icon-box.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
  }
  
  .mission-card:hover .team-info h3,
  .mission-card:hover .team-info p {
    color: #fff;
  }
  
  
  /* Mission Section */
  .mission {
    padding: 40px 5%;
    background-color: #e6f4ea;
    width: 100vw;

  }
  
  .mission-heading h2 {
    font-size: 2.8rem;
    font-weight: 600 ;
    color: #1a1a1a;
    margin: 0 0 20px 80px;
    border-left: 6px solid #2f684e;
    padding-left: 20px;

    
  }
  
  .mission-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .mission-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: 250px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
  }
  
  .mission-card p {
    font-size: 16px;
    color: #444;
    font-weight: 500;
  }
  
  .mission-card:hover {
    background-color: #0bb368;
    color: #fff;
    transform: translateY(-8px);
  }
  
  .mission-card:hover .icon-box {
    background-color: #fff;
    color: #0bb368;
  }
  
  .mission-card:hover p {
    color: #fff;
  }
  
  /* Vision Section */
  .our-vision {
    padding: 40px 5%;
    margin: 50px auto;
    background-color: #f0fdf4;
    border-left: 8px solid #0bb368;
    border-radius: 8px;
    width: 100vw;

  }
  
  .our-vision h2 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 20px 70px;
    border-left: 6px solid #2f684e;
    padding-left: 20px;
  }
  
  .our-vision p {
    margin-bottom: 15px;

    max-width: 1100px;
    margin: auto;
    font-size: 18px;
    color: #434242;
    line-height: 1.8;
  }
  
  /* Responsive Design */
  @media screen and (max-width: 768px) {
    .mission-cards {
      flex-direction: column;
      align-items: center;
    }
  
    .mission-card {
      width: 90%;
    }
  
    .our-vision {
      padding: 30px 5%;
    }


    .mission, .our-vision , .story-section, .why-choose-us,  .our-impact, .before-footer{
      padding: 20px;
    }
  
    .mission-heading, .our-vision-text, .story-content, .why-choose-us-content, .how-you-can-help{
      padding: 0;
      margin: 0;
      border: none;
      padding-bottom: 10px;
      text-align: left !important;

    }

    .mission-heading h2,  .our-vision-text h2, .story-content h2, .why-choose-us-content h2, .our-impact h2 , .how-you-can-help h2 {
      font-size: 1.6rem !important;
      border-left: none;
      border-bottom: 3px solid #2f684e;
      padding:10px 0;
      text-align: left !important;
      font-weight: 600;
      margin: 0;
    }

    .our-vision p, .story-content p, .why-choose-us-content ul li, .how-you-can-help p{
      padding-left: 0;
      font-size: 1rem;
      text-align: justify;
    }
  
  }
      

  /* --- Story Section Styling --- */
.story-section {
    background: linear-gradient(to right, #1f4037, #99f2c8);
    color: #fff;
    padding: 60px 5% 40px;
    width: 100vw;

  }
  
  .story-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  
  .story-content {
    flex: 1 1 40%;
  }
  
  .story-content h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  }
  
  .story-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #f0f0f0;
  }
  
  .story-carousel {
    flex: 1 1 55%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }
  
  .story-carousel img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  /* Bootstrap carousel controls override (optional for color) */
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    padding: 20px;
  }
  
  /* --- Responsive Design --- */
  @media (max-width: 768px) {
    .story-container {
      flex-direction: column;
      text-align: center;
    }
  
    .story-content {
      flex: 1 1 100%;
    }
  
    .story-carousel {
      flex: 1 1 100%;
    }
  }

  
  .card-text {
    font-size: 16px;
    color: #434242;
  }
  
  .activity-card:hover .card-text {
    color: #f5f5f5;
  }
  
  .card-text span {
    font-weight: bold;
    font-size: 18px;
  }
  


  

  /* ----- Why Choose Us ----- */
  .why-choose-us {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #2d6a4f;
    flex-wrap: wrap;

    background: linear-gradient(to right, #ffffff, #b6fada, #b6fada, #ffffff);
    color: #fff;
    padding: 60px 5% 40px;
    width: 100vw;
  }
  
  .why-choose-us-content {
    min-width: 300px;
    max-width: 600px;

    flex: 1 1 40%;

  }
  
  .why-choose-us-content h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
    color:#2d6a4f
  }
  
  .why-choose-us-list {
    list-style: none;
    padding: 0;
  }
  
  .why-choose-us-list li {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.6;
    color:#434242
  }
  
  .why-choose-us-list i {
    color: #2d6a4f;
    font-size: 20px;
  }
  
  .why-choose-us-image img {
    width: 45vw;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  /* Responsive */
  @media (max-width: 1024px) {
    .why-choose-us {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .why-choose-us-content {
      max-width: 100%;
    }
  
    .why-choose-us-image img {
      width: 100%;
      margin-top: 20px;
    }
  }
  
  /* ----- Our Impact ----- */
  .our-impact {
    padding: 3% 5%;
    background-color: #f5f5f5;
    margin-top: 40px;
  }
  
  .our-impact h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #2d6a4f;
    text-align: left;
  }
  
  .impact-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .impact-box {
    background-color: white;
    border: 2px solid #2d6a4f;
    border-radius: 10px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    width: 220px;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .impact-box:hover {
    transform: translateY(-5px);
  }
  
  .impact-icon {
    font-size: 40px;
    color: #2d6a4f;
    margin-bottom: 15px;
  }
  
  .counting {
    font-size: 32px;
    font-weight: bold;
    color: #000;
  }
  
  .impact-box p {
    margin-top: 10px;
    font-size: 16px;
    color: #444;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .impact-box {
      width: 90%;
    }
  }
  

  
  .team-info {
    padding: 10px 15px;
  }
  
  .team-info h3 {
    font-size: 1.1rem;
    margin: 5px 0 3px;
    color: #1f2937;
  }
  
  .team-info p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
  }
  
  




  .before-footer {
    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #2d6a4f;
    flex-wrap: wrap;

    padding: 60px 5% 40px;
    width: 100vw;
  }


  .how-you-can-help h2 {
    color: #2d6a4f;
    margin-bottom: 20px;

    font-size: 42px;
    font-weight: bold;
    text-align: left;
  }

  .how-you-can-help p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }

  .links button,
  .links a button {
    padding: 12px 25px;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
  }

  .learn-more {
    background-color: #1976d2;
    color: white;
  }

  .donate-now {
    background-color: #d32f2f;
    color: white;
  }

  .Volunteer {
    background-color: #388e3c;
    color: white;
  }

  .links button:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 600px) {
    .how-you-can-help {
      padding: 20px;
    }

    .how-you-can-help h2 {
      font-size: 1.6rem;
    }

    .how-you-can-help p {
      font-size: 1rem;
    }

    .links {
      flex-direction: column;
    }

    .links button {
      width: 100%;
    }
  }
  




  

/* footer  code starts  */
.footerContainer{
    background:#F5F5F5;
}

footer{
    width: 100%;
    /* position: absolute; */
    bottom: 0;
    background: linear-gradient(to right, #262525, #131111);

    color: #eee5e5;
    padding: 100px 0 30px;
     border-top-left-radius: 5px;
    /* border-top-right-radius: 20px; */
    font-size:13px ;
    line-height: 20px;
    box-shadow: 0 -3px 3px rgba(194, 194, 194, 0.708);
}
  .footerRow{
    width: 85%;
    margin:auto;
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.footercol{
    flex-basis: 25%;
    padding: 10px;

}
.footercol:nth-child(2),.footercol:nth-child(3){
    flex-basis:17%;
    
}

.footercol .logo{
    width: 80px;
    margin-bottom: 30px;
    border-radius: 100px;
    
}


.footercol h3{
    width: fit-content;
    color: #008E66;
    margin-bottom: 30px;
    position: relative;
    font-weight:bold;
    
   
    font-style: normal;
    font-size:large;
    height: fit-content;    
    
}

.footercol ul li{
    list-style: none;
    margin-bottom: 12px;
}
.footercol ul li a{
    text-decoration: none;
    color: rgb(203, 197, 197);
    font-weight: 600;
    text-decoration: underline;
}
.footercol ul li a:hover{
    color: rgba(22, 151, 48, 0.719);
}





.footer .social-icons .fa-brands{
    width:40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;
    

}
.footer .social-icons .fa-brands:hover{
     scale: 1.1;
     transition: scale 0.3s ease;
     box-shadow: 0 0 10px rgba(226, 226, 228, 0.795);
    
     color: white;
}
.footer .social-icons .fa-facebook{
    background: linear-gradient(
        to right,
        #1877F2,
        #2851A3
      );
    color: #fff;}
.footer .social-icons .fa-linkedin{
    background: linear-gradient(
        to right,
        #0077B5,
        #004182
      );color: #fff;}
.footer .social-icons .fa-whatsapp{
    background: linear-gradient(
        135deg,
        #25D366,
        #128C7E
      );color: #fff;}
.footer .social-icons .fa-instagram
{
    background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );color: #fff;
}

footer hr{
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;


}

#footerScanAndDonate{
    display: flex;
    flex-direction: column;
    align-items: center;
}
#footerScanAndDonate img{
width: 100%;
height: 220px;
object-fit: contain;
}
footer .copyright{
    text-align: center;
}
footer .underline{
    width: 100%;
    height:4px;
    background: #234e2a7b;
    border-radius: 3px;
    position: absolute;
    left: 0;
    bottom: -9;
    overflow: hidden;
}
footer .underline span{
    width: 28px;
    height: 100%;
    background: #29ba6a9c;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite ;
    
}
.footerLocation{
    display: flex;
    align-items: center;
    gap: 8px;
}
.emailHere{
    display: flex;
    align-items: center;
   margin-top: 10px;
    gap: 8px;
}
.telephoneInfo{
    display: flex;
    align-items: center;
   margin-top: 10px;
    gap: 8px;
}
.footerLocation2{
    display:flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 0 0;
}
#office{
    color:#b3adad;
    font-size: 14px;
}
.footerCopyrightSection{
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    /* padding: 0 60px; */

}
.aboutInFooter{
    color: rgb(212, 203, 203);
    font-size: normal;
    font-weight: 500;
}
.footerCopyrightSection p{
    letter-spacing: 3px;
}
.footerCopyrightSection .copyright span{
    color: #008e66;
    font-weight: 600;
}

#firstFooterCol p{
   letter-spacing: 1.2px; 
   font-size:14px;
}

.newsletterSection {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    min-height: 50vh;
    margin: auto;
    position: relative; /* Required for z-index to work */
    z-index: 1;
    background-image: url("donation.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 10px;
}
.outerNewsletter{
    background: #fcf9f962;
    width: 90%;
    border-radius: 10px;
}
.blurBlack{
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color:rgba(110, 104, 104, 0.331);
}
.contentNewsletter{
    position: relative;
    z-index: 2;
    padding: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 95%;
    background:rgba(185, 184, 184, 0.249);
    height: 100%;
    padding: 20px;
    margin: auto;
    color: black;
    border-radius: 10px;
    
}
.contentNewsletter h3{
    color: black;
    font-style:normal;
    font-weight: bold;
    font-size: large;
    
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 2px;
    text-align: center;
    
}
.contentNewsletter p{
    letter-spacing: 1.5px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;

}

.contentNewsletter form{
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contentNewsletter form  input{
    width: 70%;
    padding: 15px 23px;
    outline: none;
    border: none;
    border-bottom: 1px solid grey;
    border-radius: 12px;
}
.contentNewsletter form .fa-solid{
    font-size: 22px;
    margin-right: 5px;
}
.contentNewsletter form button {
    padding: 15px 23px;
    background: #008e66;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.2s ease;
    width: 40%;
    margin:auto;
}
.contentNewsletter form button:hover{
    background-color: #29ba6a;
}
#joinN{
    text-align: center;
    /* margin-bottom: 10px; */
    color: #008E66;
    position: relative;
    width: fit-content;
    margin: auto;
    margin-bottom: 20px ;
    font-size: large;

}
@keyframes moving{
    0%{
        left:-20px
    }
    100%{
        left:100%
    }
}
@media screen and (max-width:700px) {
    footer{
        bottom: unset;
        padding-top: 30px;
    }
    .footer .logo{
        width: 60px;
        border-radius:50%;
    }
    .footercol{
        flex-basis: 100%;
        
        /* padding: 10px; */
    
    }
    .footercol:nth-child(2),.footercol:nth-child(3){
        flex-basis: 100%;
    }
    #firstFooterCol{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
     }
     .newsletterSection{
        width: 70%;
     }
     .contentNewsletter h3{
        font-size: medium;
     }
     .contentNewsletter p{
        font-size: 12px;
     }
     .contentNewsletter form input{
        width: 80%;
        padding: 10px 15px;

     }
     .contentNewsletter form button{
        width: fit-content;
        padding: 7px 10px;
        font-size: 10px;
        
        
     }
}
@media  (min-width:700px) and (max-width:1100px) {
 footer{
    bottom:unset;
    padding-top: 30px;
 }
 
.footercol:nth-child(1){
    flex-basis: 100%;
}
.footercol:nth-child(2),.footercol:nth-child(3),.footercol:nth-child(4){
    /* width: fit-content; */
    flex-basis:29%;
}
}

@media screen and (max-width:1000px) {
    .footerCopyrightSection{
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

