html{
    scroll-behavior:smooth;
}
html,body {
    font-family: 'Poppins', sans-serif;
    background-color: #a7d129;
    overflow-x: hidden;
    max-width: 100%;
    margin: 0;
    padding: 0;
}
@media (max-width: 991px) {
    .navbar .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .brand-tagline {
        display: none;
    }
}
#loader{
    position:fixed;
    inset:0;
    background:#ffffff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:99999;
    transition:opacity .6s ease,visibility .6s ease;
}

#loader img{
    width:120px;
    animation:loaderFloat 1.5s ease-in-out infinite;
}

#loader h2{
    margin-top:20px;
    font-weight:700;
    font-size:2rem;
}

#loader.hide{
    opacity:0;
    visibility:hidden;
}

@keyframes loaderFloat{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

}

 .navbar-brand {
    flex: 0 0 auto;
    max-width: 300px;
}

.logo {
    width: 60px;
    height: 60px;
}

.brand-name {
    font-size: 1.8rem;
    line-height: 1.1;
}


.brand-pay {
    color: #a7d129;
}

.brand-tagline {
    display: block;
    font-size: 0.85rem;
    white-space: nowrap;
}

.navbar-collapse {
    flex-grow: 1;
}

.navbar-nav {
    margin-left: auto;
    gap: 10px;
}

.nav-link {
    margin-left: 0;
    white-space: nowrap;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
    color: #7fb000;
    font-weight: 700;
    transform: translateY(-2px);
}

.login-btn,
.cta-btn {
    background: #a7d129;
    color: #1f1f1f;
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 600;
}

.login-btn:hover,
.cta-btn:hover {
    background: #94bc21;
    color: #1f1f1f;
}

.hero-banner-section {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
/* .hero-banner-img {
    width: 100%;
    max-width: 100%;
    height:auto;
    display: block;
} */
 .hero-banner-img{
    width:100%;
    max-width:100%;
    height:auto;
    display:block;

    opacity:0;
    animation:
    fadeHero 1.2s ease forwards,
    float 5s ease-in-out infinite 1.2s;
}
@keyframes fadeHero{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}
.service-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1f1f1f;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 1rem;
    font-weight: 400;
    color: #555;
    line-height: 1.7;
}

.service-card {
    text-align: center;
}
#services h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1f1f1f;
}

#services .text-muted {
    color: #555 !important;
    font-size: 1.1rem;
    font-weight: 500;
}
.service-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.18);
    cursor:pointer;
}

.service-card:hover .service-icon{
    transform:scale(1.12) rotate(5deg);
}

.about-section {
    background: #f8f9fa;
}

.about-image {
    max-width: 300px;
    width: 100%;
}

.about-list li {
    margin-bottom: 12px;
}

.stats-section {
    background: #1f1f1f;
    color: white;
    padding: 70px 0;
}

.stats-section h2 {
    color: #a7d129;
    font-size: 3rem;
}
.stat-item{
    opacity:0;
    transform:translateY(50px);
    transition:all .8s ease;
}

.stat-item.show{
    opacity:1;
    transform:translateY(0);
}
.stat-item{
    transition:all .4s ease;
}

.stat-item:hover{
    transform:translateY(-8px);
}

.counter{
    transition:transform .3s;
}

.stat-item.show .counter{
    animation:pop .5s ease;
}

@keyframes pop{
    0%{
        transform:scale(.8);
    }
    60%{
        transform:scale(1.15);
    }
    100%{
        transform:scale(1);
    }
}
.footer {
    background: #111;
    color: white;
    padding: 50px 0;
    border-top: 4px solid #a7d129;
    margin: 0;
    margin-bottom: 0;
}

.footer-logo {
    width: 80px;
    height: auto;
}
.contact1 {
    text-decoration: Underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 5px;
}
#contact {
    background: #a7d129;
    padding: 80px 0;
}
.service-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: all .35s ease;
}
.join-btn {
    transition:all .35s ease;
    background: #a7d129;
    color: #1f1f1f;
    border: none;
    border-radius: 40px;
    padding: 16px 42px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing:.5px;
}
.join-submit-btn {
    transition:all .35s ease;
    background: #a7d129;
    color: #1f1f1f;
    border: none;
    border-radius: 30px;
    padding: 12px 28px;
    font-weight: 600;
}
.join-btn:hover{

    transform:translateY(-3px) scale(1.03);

}

.join-btn:hover,
.join-submit-btn:hover{
    background:#94bc21;
    color:#1f1f1f;
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(167,209,41,.35);
}

.join-modal {
    border: 0;
    border-radius: 20px;
}

.join-modal .modal-title {
    font-weight: 700;
    color: #1f1f1f;
}

.join-modal .form-control,
.join-modal .form-select {
    border-radius: 12px;
    padding: 12px;
}
@keyframes float{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }

}
#topBtn{

    position:fixed;
    bottom:30px;
    right:30px;

    width:50px;
    height:50px;

    border:none;
    border-radius:50%;

    background:#a7d129;

    font-size:22px;

    cursor:pointer;

    display:none;

    box-shadow:0 10px 20px rgba(0,0,0,.2);

    z-index:999;
}

#topBtn:hover{

    transform:translateY(-4px);

}


.policy-section {
    min-height: 100vh;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f4f7f0 0%, #ffffff 100%);
}

.policy-container {
    max-width: 950px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-top: 6px solid #a7d129;
}

.policy-container h1 {
    color: #1f1f1f;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.policy-container h1::after {
    content: "";
    display: block;
    width: 600px;
    height: 4px;
    background: #a7d129;
    margin-top: 12px;
    border-radius: 10px;
}

.policy-container h2 {
    color: #1f1f1f;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 15px;
}

.policy-container p,
.policy-container li {
    color: #555;
    line-height: 1.9;
    font-size: 1rem;
}

.policy-container ul {
    padding-left: 20px;
}

.policy-container li {
    margin-bottom: 10px;
}

.policy-container strong {
    color: #1f1f1f;
}

.policy-container a {
    color: #7fb000;
    text-decoration: none;
}

.policy-container a:hover {
    text-decoration: underline;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #a7d129;
    color: #1f1f1f;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 35px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #94bc21;
    transform: translateY(-2px);
    color: #1f1f1f;
    
}
.back-btn,
.back-btn:link,
.back-btn:visited,
.back-btn:hover,
.back-btn:active,
.back-btn:focus {
    text-decoration: none !important;
}
