body {
    font-family: Arial;
    margin: 0;
}

/* Top Header */

/* Top Header */
.top-header .container{
    display:flex;
    justify-content:space-between;
}

.header-container{
    display:flex;
    justify-content:space-between;
}

.counter-wrapper{
    display:grid;
}

.top-header{
    background:#2c3e50;
    color:white;
    padding:12px 0;
    font-size:14px;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.top-left span{
    display:inline-block;
}

.top-right span{
    margin-left:20px;
    font-size: 18px;
}

.top-left span{
    margin-left:20px;
    font-size: 18px;
}

.top-header i{
    margin-right:6px;
}


/* HEADER */

.main-header{
    background:white;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

/*.main-header{*/
/*    position:fixed;*/
/*    width:100%;*/
/*    top:0;*/
/*    left:0;*/
/*    z-index:999;*/
/*    background:rgba(0,0,0,0.2);*/
/*    transition:0.4s;*/
/*}*/

.main-header.scrolled{
    background:white;
}

.header-container{
    width:90%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px 0;
}

/* LOGO */

.logo img{
    height:50px;
}

/* MENU */

.main-menu{
    display:flex;
    align-items:center;
    gap:25px;
}

.main-menu a{
    text-decoration:none;
    color:black;
    text-transform:uppercase;
    font-weight:600;
    font-size:14px;
    position:relative;
}

/* HOVER ANIMATION */

.main-menu a::after{
    content:'';
    width:0;
    height:2px;
    background:#27ae60;
    position:absolute;
    bottom:-5px;
    left:0;
    transition:0.3s;
}

.main-menu a:hover::after{
    width:100%;
}

/* DONATE BUTTON */

.donate-btn{
    background:#27ae60;
    color:white !important;
    padding:10px 18px;
    border-radius:4px;
}

.donate-btn:hover{
    background:#219150;
}

/* DROPDOWN */

.dropdown{
    position:relative;
}

.dropdown-content{
    position:absolute;
    background:white;
    top:30px;
    left:0;
    display:none;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.dropdown-content a{
    display:block;
    padding:10px 15px;
    white-space:nowrap;
}

.dropdown:hover .dropdown-content{
    display:block;
}

/* MOBILE MENU */

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

    .main-menu{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:white;
        flex-direction:column;
        display:none;
    }

    .main-menu a{
        padding:15px;
    }

    .main-menu.active{
        display:flex;
    }

    .menu-toggle{
        display:block;
    }

}

/*header {*/
/*    background: #2c3e50;*/
/*    padding: 15px;*/
/*}*/

/*header a {*/
/*    color: white;*/
/*    margin-right: 15px;*/
/*    text-decoration: none;*/
/*}*/

/*.hero {*/
/*    height: 400px;*/
/*    background: #27ae60;*/
/*    color: white;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    font-size: 40px;*/
/*}*/

/*.counter-section {*/
/*    text-align: center;*/
/*    padding: 50px;*/
/*    background: #f4f4f4;*/
/*}*/

/*.counter {*/
/*    font-size: 40px;*/
/*    color: #27ae60;*/
/*}*/



.hero{
    height:100vh;
    position:relative;
}

.hero-slide{
    position:absolute;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:1s;
}

.hero-slide{
    opacity:0;
    transition:opacity 1s ease-in-out;
}

.hero-slide.active{
    opacity:1;
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color: #000000;
}

.hero-content h1{
    font-size:50px;
    text-transform:uppercase;
}

.hero-content p{
    font-size:20px;
    margin:20px 0;
}

.hero-btn{
    background:#27ae60;
    padding:12px 30px;
    color:white;
    text-decoration:none;
    border-radius:4px;
}

.mega-menu{
    position:relative;
}

.mega-dropdown{
    position:absolute;
    top:40px;
    left:0;
    width:600px;
    background:white;
    display:none;
    padding:20px;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
    display:flex;
    gap:40px;
}

.mega-menu:hover .mega-dropdown{
    display:flex;
}

.donate-btn{
    background:#27ae60;
    padding:12px 22px;
    color:white;
    border-radius:5px;
    animation:pulse 2s infinite;
}

@keyframes pulse{
    0%{box-shadow:0 0 0 0 rgba(39,174,96,0.7);}
    70%{box-shadow:0 0 0 15px rgba(39,174,96,0);}
    100%{box-shadow:0 0 0 0 rgba(39,174,96,0);}
}




/* ABOUT SECTION */
.about{
    background:#eaf4ff; /* light material blue */
    padding:100px 8%;
}

.about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
}

.about-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:20px;
}

/* content */

.about-content{
    max-width:500px;
}

.about-content h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:25px;
    color:#222;
}

.about-content p{
    font-size:17px;
    line-height:1.7;
    color:#555;
}

.title-line{
    width:110px;
    height:4px;
    background:#2ecc71;
    margin-bottom:25px;
    border-radius:2px;
}

@media (max-width:900px){

    .about-wrapper{
        grid-template-columns:1fr;
    }

    .about-image{
        margin-bottom:40px;
    }

}


/* COUNTER SECTION */

.counter-section{
    position:relative;
    padding:100px 20px;
    background:url('../images/slider1.jpg') center/cover no-repeat;
}

.counter{
    font-size:42px;   /* bigger number */
    font-weight:800;
    margin-top:8px;

    background:linear-gradient(45deg,#ff7a18,#ffd200);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}


.circle-content i{
    font-size:34px;   /* bigger icon */
    margin-bottom:10px;
}

/* volunteers */
.fa-hand-holding-heart{
    color:#ff6b6b;
}

/* donations */
.fa-dollar-sign{
    color:#2ecc71;
}

/* projects */
.fa-people-group{
    color:#3498db;
}

/* countries */
.fa-globe{
    color:#f1c40f;
}

.counter-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
}

/* LAYOUT */

.counter-wrapper{
    position:relative;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

/* GRID */

.counter-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

/* GLASS CARD */

.glass-card{
    text-align:center;
    padding:25px;
    border-radius:15px;
    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(12px);
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
    color:white;
    transition:.4s;
}

.glass-card:hover{
    transform:translateY(-10px);
}

/* CIRCLE */

.circle{
    position:relative;
    width:120px;
    height:120px;
    margin:auto;
}

.circle svg{
    width:120px;
    height:120px;
    transform:rotate(-90deg);
}

.circle circle{
    fill:none;
    stroke-width:8;
    stroke:#ffffff30;
}

.circle .progress{
    stroke:#2ecc71;
    stroke-dasharray:326;
    stroke-dashoffset:326;
    transition:2s;
}

/* ICON + NUMBER */

.circle-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
}

.circle-content i{
    font-size:20px;
    margin-bottom:4px;
    display:block;
}

.circle-content span{
    font-size:18px;
    font-weight:600;
}

.glass-card{
    background:#ffffff;
    border-radius:20px;
    padding:35px 30px;
    text-align:center;
    transition:0.4s;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.glass-card p{
    color:#333;
    font-weight:600;
    margin-top:15px;
}

.glass-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

/* IMAGE */

.counter-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,0.4);
}


.pulse-icon{
    font-size:26px;
    margin-bottom:8px;
    animation:pulse 2s infinite;
}

@keyframes pulse{

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

}


/* RESPONSIVE */

@media(max-width:900px){

    .counter-wrapper{
        grid-template-columns:1fr;
    }

}


/* FOOTER */

.footer{
    background:#2c3e50;
    color:white;
    padding:60px 20px 20px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    max-width:1200px;
    margin:auto;
}

.footer-col h3{
    margin-bottom:15px;
}

.footer-col p{
    line-height:1.6;
}

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

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

.footer-col ul li a{
    color:white;
    text-decoration:none;
    transition:0.3s;
}

.footer-col ul li a:hover{
    color:#f39c12;
}

.social-icons a{
    display:inline-block;
    margin-right:10px;
    color:white;
    font-size:18px;
    transition:0.3s;
}

.social-icons a:hover{
    color:#f39c12;
}



/* SECTION */

.news-happenings-form{
    padding:80px 10%;
    background:#f9f9f9;
}

/* TITLE */

.section-title{
    text-align:center;
    font-size:36px;
    font-weight:700;
}

/* MODERN DIVIDER */

.section-divider{
    width:80px;
    height:4px;
    background:#ff3b3b;
    margin:0 auto 20px auto;
    border-radius:10px;
    margin-bottom:60px;
}

/* GRID */

.news-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:40px;
}

/* CARD */

.news-card{
    background:#fff;
    border-radius:0;
    overflow:hidden;
    position:relative;
    transition:all .4s ease;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* CARD LIFT */

.news-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* IMAGE */

.news-image{
    position:relative;
    overflow:hidden;
}

.news-image img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:transform .5s ease;
}

/* IMAGE ZOOM */

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

/* DATE BADGE */

.date-badge{
    position:absolute;
    top:15px;
    left:15px;
    background:#ff3b3b;
    color:white;
    font-size:14px;
    padding:6px 12px;
    font-weight:600;
}

/* CONTENT */

.news-content{
    padding:25px;
    text-align:left;
}

.news-content h4{
    font-size:20px;
    margin-bottom:15px;
}

.news-content p{
    font-size:15px;
    color:#666;
    line-height:1.6;
}

/* BOTTOM LINE */

.card-line{
    height:3px;
    width:100%;
    background:#eee;
    position:absolute;
    bottom:0;
    left:0;
}

/* RED HOVER LINE */

.news-card::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:0%;
    height:3px;
    background:#ff3b3b;
    transition:0.4s;
}

.news-card:hover::after{
    width:100%;
}


/* Newsletter */

.newsletter-form{
    display:flex;
    margin-top:10px;
}

.newsletter-form input{
    flex:1;
    padding:10px;
    border:none;
}

.newsletter-form button{
    background:#f39c12;
    border:none;
    padding:10px 15px;
    color:white;
    cursor:pointer;
}


/* Footer Bottom */

.footer-bottom{
    text-align:center;
    margin-top:30px;
    border-top:1px solid rgba(255,255,255,0.2);
    padding-top:15px;
    font-size:14px;
}

/* Responsive */

@media(max-width:900px){

    .footer-container{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:600px){

    .footer-container{
        grid-template-columns:1fr;
    }

}


/* OURSERVICES SECTION */

.ourservices{
    padding:90px 20px;
    background:#f7f9fb;
    text-align:center;
}

.section-title{
    font-size:34px;
    margin-bottom:60px;
    font-weight:700;
}

/* GRID */

.ourservices-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    max-width:1200px;
    margin:auto;
}

/* CARD */

.cause-card{
    background:white;
    padding:45px 30px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    text-align:center;
    transition:all .35s ease;
    position:relative;
    overflow:hidden;
}

.cause-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

/* ICON BOX */

.icon-box{
    width:95px;
    height:95px;
    background:linear-gradient(135deg,#27ae60,#2ecc71);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px auto;
    transition:.4s;
    position:relative;
}

/* ICON */

.icon-box img{
    width:45px;
    height:45px;
    animation:iconFloat 3s infinite ease-in-out;
}

/* ICON ANIMATION */

@keyframes iconFloat{
    0%{transform:translateY(0);}
    50%{transform:translateY(-6px);}
    100%{transform:translateY(0);}
}

/* HOVER CIRCLE EFFECT */

.cause-card:hover .icon-box{
    transform:scale(1.15) rotate(6deg);
}

/* TITLE */

.cause-card h4{
    font-size:20px;
    margin-bottom:15px;
}

/* TEXT */

.cause-card p{
    color:#666;
    margin-bottom:28px;
    line-height:1.6;
}

/* MODERN BUTTON */

.read-btn{
    display:inline-block;
    padding:11px 24px;
    border-radius:40px;
    background:linear-gradient(135deg,#27ae60,#2ecc71);
    color:white;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.read-btn i{
    margin-right:6px;
}

/* BUTTON HOVER */

.read-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 18px rgba(0,0,0,0.15);
}

/* RESPONSIVE */

@media(max-width:992px){

    .ourservices-container{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:600px){

    .ourservices-container{
        grid-template-columns:1fr;
    }

    .section-title{
        font-size:28px;
    }

}



/*OUR MISSION*/
/* SECTION */

.mission-section{
    padding:100px 7%;
    background:#f7f9fc;
    text-align:center;
}
.vision-section{
    padding:20px 7%;
    background:#f7f9fc;
    text-align:center;
}


/* TITLE */

.mission-title{
    font-size:36px;
}

/* MAIN GRID */

.mission-container{
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

/* IMAGE */

.mission-image{
    width:60%;
}

.mission-image img{
    width:100%;
    height:550px;
    object-fit:cover;
}

/* CARD */

.mission-card{
    width:40%;
    background:#fff;
    padding:50px;
    text-align:left;
    position:relative;
    left:-70px;   /* overlap on image */
    box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

.vision-card{
    width:40%;
    background:#fff;
    padding:20px;
    text-align:left;
    position:relative;
    left:70px;   /* overlap on image */
    box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

/* CARD TEXT */

.mission-card h3{
    font-size:24px;
    margin-bottom:20px;
}

.mission-card p{
    color:#666;
    line-height:1.7;
    margin-bottom:40px;
}

/* FEATURES */

.mission-features{
    display:flex;
    justify-content:space-between;
}


/* =========================
   PLANTING SECTION
========================= */

/* ===============================
   PLANTING SECTION
================================ */

.planting-section{
    padding:140px 7%;
    background:linear-gradient(135deg,#e6f9ec,#d6f5df);
    position:relative;
    overflow:hidden;
}

/* Organic curved background shape */

.planting-bg-shape{
    position:absolute;
    width:600px;
    height:600px;
    background:#b6f0c6;
    border-radius:50% 40% 60% 50%;
    top:-200px;
    left:-150px;
    opacity:.4;
}

/* TITLE */

.planting-title{
    text-align:center;
    font-size:38px;
    margin-bottom:20px;
}

/* DIVIDER */

.section-divider{
    width:80px;
    height:4px;
    background:#2ecc71;
    margin:0 auto 70px auto;
}

/* CONTAINER */

.planting-container{
    position:relative;
    display:flex;
    align-items:center;
}

/* ===============================
   CONTENT CARD
================================ */

.planting-card{
    width:65%;
    background:#fff;
    padding:60px 220px 60px 80px;

    border-top-left-radius:220px;
    border-bottom-left-radius:220px;

    box-shadow:0 20px 60px rgba(0,0,0,0.1);

    position:relative;
    z-index:1;
}

.planting-card h3{
    font-size:26px;
    margin-bottom:20px;
}

.planting-card p{
    color:#666;
    line-height:1.8;
}

/* ===============================
   IMAGE
================================ */

.planting-image{
    width:420px;
    height:420px;

    border-radius:50%;
    overflow:hidden;

    position:absolute;
    right:-60px;
    z-index:2;

    border:10px solid #fff;
    box-shadow:0 30px 70px rgba(0,0,0,0.25);
}

.planting-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* ===============================
   FLOATING LEAVES
================================ */

.leaf{
    position:absolute;
    font-size:30px;
    animation:leafFloat 6s ease-in-out infinite;
}

.leaf1{
    top:-20px;
    left:40px;
}

.leaf2{
    bottom:20px;
    right:-20px;
    animation-delay:2s;
}

.leaf3{
    top:50%;
    left:-30px;
    animation-delay:3s;
}

/* floating animation */

@keyframes leafFloat{
    0%,100%{
        transform:translateY(0) rotate(0deg);
    }
    50%{
        transform:translateY(-20px) rotate(15deg);
    }
}

/* TREE GROW EFFECT */

.grow-tree{
    transform:scale(0.6);
    opacity:0;
    transition:all 1.2s ease;
}

/* When visible */

.grow-tree.show{
    transform:scale(1);
    opacity:1;
}
/*-------*/

/* VOLUNTEER SECTION */

.volunteer-section{
    padding:120px 7%;
    background:#f7f9fc;
    text-align:center;
}

.volunteer-title{
    font-size:38px;
    margin-bottom:60px;
}

/* GRID */

.volunteer-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

/* CARD */

.volunteer-card{
    text-align:center;
}

/* IMAGE */

.volunteer-img{
    position:relative;
    width:200px;
    height:200px;
    margin:auto;
    border-radius:50%;
    overflow:hidden;
}

/* IMAGE */

.volunteer-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
    transition:all .6s ease;
}

/* HOVER IMAGE MOVE */

.volunteer-card:hover img{
    transform:translateX(-10px);
}

/* OVERLAY */

.volunteer-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.7));

    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;

    opacity:0;
    transition:.4s;
}

/* SHOW OVERLAY */

.volunteer-card:hover .volunteer-overlay{
    opacity:1;
}

/* SOCIAL ICONS */

.volunteer-overlay a{
    color:#fff;
    font-size:18px;
    width:40px;
    height:40px;
    border-radius:50%;
    background:rgba(255,255,255,0.2);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.volunteer-overlay a:hover{
    background:#2ecc71;
}

/* TEXT */

.volunteer-card h4{
    margin-top:20px;
    font-size:20px;
    margin-bottom: 0px;
}

.volunteer-card p{
    color:#777;
    /*margin-top:5px;*/
}



/* FEATURE */

.feature{
    text-align:center;
}

/* ICON */

.icon{
    width:70px;
    height:70px;
    border-radius:40%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:12px;
    font-size:24px;
}

/* COLORS */

.blue{
    background:#e8f2ff;
    color:#2b7bff;
}

.yellow{
    background:#fff5d6;
    color:#f4b400;
}

.green{
    background:#e6f7ec;
    color:#2ecc71;
}

/* ICON TITLE */

.feature h4{
    font-size:16px;
}



/* ==============================
   MOBILE RESPONSIVE SUPPORT
================================ */

/* Tablet */

@media (max-width:1024px){

    .container{
        width:95%;
    }

    .about-wrapper{
        grid-template-columns:1fr;
        gap:40px;
    }

    .counter-wrapper{
        grid-template-columns:1fr;
        gap:40px;
    }

    .mission-container{
        flex-direction:column;
    }

    .mission-image{
        width:100%;
    }

    .mission-card{
        width:90%;
        left:0;
        margin-top:-60px;
    }

    .vision-card{
        width:90%;
        left:0;
        margin-top:20px;
    }

    .planting-container{
        flex-direction:column;
    }

    .planting-card{
        width:100%;
        padding:40px;
        border-radius:20px;
    }

    .planting-image{
        position:relative;
        right:auto;
        margin-top:30px;
    }

    .volunteer-container{
        grid-template-columns:repeat(2,1fr);
    }

}


/* Mobile */

@media (max-width:768px){

    .hero-content h1{
        font-size:32px;
    }

    .hero-content p{
        font-size:16px;
    }

    .header-container{
        padding:10px 0;
    }

    .logo img{
        height:40px;
    }

    .about{
        padding:60px 20px;
    }

    .about-content h2{
        font-size:28px;
    }

    .counter-grid{
        grid-template-columns:1fr;
    }

    .ourservices-container{
        grid-template-columns:1fr;
    }

    .mission-image img{
        height:350px;
    }

    .mission-card{
        padding:30px;
    }

    .vision-card{
        padding:25px;
    }

    .planting-section{
        padding:80px 20px;
    }

    .planting-card{
        padding:30px;
    }

    .planting-image{
        width:280px;
        height:280px;
    }

    .volunteer-container{
        grid-template-columns:1fr;
    }

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

}


/* Small Mobile */

@media (max-width:480px){

    .hero-content h1{
        font-size:26px;
    }

    .hero-btn{
        padding:10px 20px;
        font-size:14px;
    }

    .section-title{
        font-size:26px;
    }

    .counter{
        font-size:30px;
    }

    .circle{
        width:90px;
        height:90px;
    }

    .circle svg{
        width:90px;
        height:90px;
    }

    .volunteer-img{
        width:150px;
        height:150px;
    }

}


/* SCROLL REVEAL */

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:all 0.8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}


/* PAGE LOADER */

#loader{
    position:fixed;
    width:100%;
    height:100%;
    background:white;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
}

.spinner{
    width:50px;
    height:50px;
    border:5px solid #eee;
    border-top:5px solid #27ae60;
    border-radius:50%;
    animation:spin 1s linear infinite;
}

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



/* FLOATING DONATE BUTTON */

.floating-donate{
    position:fixed;
    bottom:25px;
    right:25px;
    width:60px;
    height:60px;
    background:#27ae60;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    box-shadow:0 8px 25px rgba(0,0,0,0.3);
    z-index:9999;
    animation:pulseDonate 2s infinite;
}

@keyframes pulseDonate{

    0%{
        box-shadow:0 0 0 0 rgba(39,174,96,0.7);
    }

    70%{
        box-shadow:0 0 0 15px rgba(39,174,96,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(39,174,96,0);
    }

}

.floating-donate:hover{
    background:#219150;
}


/*#google_translate_element{*/
/*    position:fixed;*/
/*    bottom:20px;*/
/*    right:20px;*/
/*    z-index:9999;*/
/*    background:#fff;*/
/*    padding:8px 12px;*/
/*    border-radius:6px;*/
/*    box-shadow:0 4px 10px rgba(0,0,0,0.2);*/
/*}*/

/* Hide default google bar */

.goog-te-banner-frame.skiptranslate {
    display:none !important;
}

body {
    top:0px !important;
}

/* Hide google widget */

#google_translate_element{
    display:none;
}

/* Hide translate tooltip */

.goog-tooltip{
    display:none !important;
}

.goog-tooltip:hover{
    display:none !important;
}

.goog-text-highlight{
    background:none !important;
    box-shadow:none !important;
}

.language-switch{
    display:flex;
    gap:10px;
}

.language-switch button{
    background:#27ae60;
    border:none;
    color:white;
    padding:6px 12px;
    border-radius:4px;
    cursor:pointer;
    font-size:14px;
}

.language-switch button:hover{
    background:#219150;
}