body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none !important;
}

/* ================= TOP BAR ================= */
.top-bar{
    background:#1a4f01;
    color:#fff;
    font-size:14px;
    padding:8px 0;
}

.top-bar a{
    color:#fff;
    text-decoration:none;
    margin-right:15px;
}


/* Hide top bar on mobile */
@media(max-width:991px){
    .top-bar{
        display:none;
    }
}

/* ================= NAVBAR ================= */

.navbar{
    transition: all 0.4s ease;
}

.navbar-brand{
    font-weight:700;
    font-size:22px;
}

/* Sticky Navbar Style */
.navbar.sticky{
    position:fixed;
    top:0;
    width:100%;
    
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
    animation: slideDown 0.4s ease;
    z-index:9999;
}

@keyframes slideDown{
    from{
        transform:translateY(-100%);
    }
    to{
        transform:translateY(0);
    }
}

.whats-btn {
    background-color: #39bc02;
    color: #ffffff;
    border: 2px solid #39bc02;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    
    /* Infinite Zoom In-Out */
    animation: zoomInOut 2s ease-in-out infinite;
}

@media(max-width:500px){
    .whats-btn{
        margin-left: 19px;
    }
}

/* WhatsApp Icon Rotate Infinite */
.whats-btn i {
    font-size: 20px;
    animation: rotateIcon 2s linear infinite,
               moveLeftRight 3s ease-in-out infinite;
}

/* Hover Effect */
.whats-btn:hover {
    background-color: #ffffff;
    color: #39bc02;
    border-color: #39bc02;
}

/* Hover icon color */
.whats-btn:hover i {
    color: #39bc02;
}

/* Zoom Animation */
@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Left to Right Smooth Animation */
@keyframes moveLeftRight {
    0% {
        left: 0;
    }
    50% {
        left: 10px;
    }
    100% {
        left: 0;
    }
}

/* 360 Rotation */
@keyframes rotateIcon {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Offcanvas custom */
.offcanvas-header{
    border-bottom:1px solid #eee;
}

.offcanvas-body a{
    display:block;
    padding:10px 0;
    color:#000;
    text-decoration:none;
}

.offcanvas-body a:hover{
    color:#0d1b3f;
}

/* hero section code */
.hero-section{
    background:#f7f7f7;
}

/* Floating animation */
.floating-img{
    animation: floatY 4s ease-in-out infinite;
    max-height: 400px;
   max-width: 100%;

}

@keyframes floatY{
    0%{ transform: translateY(0px); }
    50%{ transform: translateY(-20px); }
    100%{ transform: translateY(0px); }
}

/* Typing cursor effect */
#autoType::after{
    content: "|";
    animation: blink 1s infinite;
}

@keyframes blink{
    0%{opacity:1;}
    50%{opacity:0;}
    100%{opacity:1;}
}

/* about section */
.about-section{
    background:#f8f9fc;
}

.about-img{
    max-width: 90%;
}

.about-section i{
    font-size:20px;
}

/* partenrs section code */
.partners-section{
    background:#ffffff;
    overflow:hidden;
}

.partners-wrapper{
    overflow:hidden;
    position:relative;
}

.partners-track{
    display:flex;
    gap:30px;
    animation: scrollPartners 25s linear infinite;
}

.partners-wrapper:hover .partners-track{
    animation-play-state: paused;
}

.partner-card{
    min-width:220px;
    background:#fff;
    padding:20px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    transition:0.3s;
    border: 1px solid #00c853;
}

.partner-card img{
    max-height:50px;
    object-fit:contain;

}

.partner-card p{
    font-size:14px;
    margin:0;
    color:#555;
}


@keyframes scrollPartners{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-50%);
    }
}

/* Responsive */
@media(max-width:768px){
    .partner-card{
        min-width:180px;
        padding:20px;
    }
}

/* importants section */
.important-box{
    background: linear-gradient(135deg, #1a4f01, #39bc02);
    border-radius: 20px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.important-img{
    max-width: 90%;
}
.w-btn{
    background-color: #fff;
    color: #1a4f01;
}

.w-btn:hover{
    background-color: #fff;
    color: #00c853;
}
/* Subtle floating animation */
.important-img{
    animation: floatEffect 4s ease-in-out infinite;
}

@keyframes floatEffect{
    0%{ transform: translateY(0); }
    50%{ transform: translateY(-12px); }
    100%{ transform: translateY(0); }
}

/* Mobile */
@media(max-width:768px){
    .important-box{
        padding: 35px 25px;
        text-align: center;
    }
}

/* features section */
.features-section{
    background:#f8f9fc;
}

.feature-card{
    background:#fff;
    border-radius:15px;
    transition:0.4s ease;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

.icon-box{
    width:80px;
    height:80px;
    background:#ffffff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.4s;
}

.icon-box i{
    font-size:32px;
    color:#39bc02;
    transition:0.4s;
}

.feature-card:hover .icon-box{
    background:#39bc02;
}

.feature-card:hover .icon-box i{
    color:#fff;
}

/* Mobile spacing */
@media(max-width:768px){
    .features-section h2{
        font-size:24px;
    }
}

/* how it work */

.how-it-works{
    background: #ffffff;
}

.step-card{
    transition:0.4s ease;
}

.step-card:hover{
    transform:translateY(-8px);
}

.step-icon{
    width:65px;
    height:65px;
    background:#39bc02;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto;
    transition:0.4s;
}

.step-icon i{
    color:#fff;
    font-size:24px;
}

/* Vertical Divider (Desktop Only) */
@media(min-width:768px){
    .step-col:not(:last-child){
        border-right:1px solid #e5e5e5;
    }
}

/* why choius us */
.why-choose-us{
    background:#f8f9fc;
}

.why-card{
    background:#fff;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    transition:0.4s ease;
}

/* Hover Effect Type 1 (Lift + Shadow) */
.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

/* Icon Circle */
.icon-circle{
    width:70px;
    height:70px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.4s;
    
}

.icon-circle i{
    font-size:26px;
    transition:0.4s;
}

/* Hover Effect Type 2 (Icon animation) */
.why-card:hover .icon-circle i{
    transform:scale(1.2) rotate(8deg);
}
.why-card .icon-circle i{
    color: #fff !important;
}

.why-card .icon-circle{
    background-color: #39bc02 !important;
}



/* counter section */
.dark-counter-section{
    background: linear-gradient(135deg, #1a4f01, #39bc02);
    color:#fff;
}

.dark-counter-box{
    padding:20px;
}

.dark-counter-box h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:5px;
}

.icon-circle{
    width:70px;
    height:70px;
    background:#ffffff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.icon-circle i{
    font-size:28px;
    color:#39bc02;
}

@media(max-width:768px){
    .dark-counter-box h2{
        font-size:32px;
    }
}

/* testimonial section */
.testimonial-section{
    background:#f5f7fa;
}

.testimonial-card{
    background:#1a4f01;
    color:#fff;
    padding:30px;
    border-radius:15px;
    position:relative;
    min-height:250px;
    transition:0.3s ease;
}



.quote-icon{
    font-size:40px;
    color:#39bc02;
    margin-bottom:15px;
}

.testimonial-card p{
    font-size:15px;
    line-height:1.6;
    margin-bottom:25px;
}

.client-info{
    display:flex;
    align-items:center;
    gap:12px;
}

.client-info img{
    width:45px !important;
    height:45px;
    border-radius:50%;
    object-fit:cover;
}

.client-info h6{
    margin:0;
    font-size:14px;
    font-weight:600;
}

.client-info span{
    font-size:12px;
    opacity:0.8;
}

/* Make owl items equal height */
.testimonial-carousel .owl-stage {
    display: flex;
}

.testimonial-carousel .owl-item {
    display: flex;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* Optional: force minimum height */
.testimonial-card {
    min-height: 280px;   /* adjust if needed */
}


/* footer section */
.main-footer{
    background: linear-gradient(to right, #1e2a33, #24343d);
    color:#ffffff;
    padding:60px 0 0 0;
}

.footer-logo{
    max-width:250px;
    border-radius:6px;
}

.footer-about p{
    font-size:15px;
    line-height:1.7;
    color:#d0d7de;
}

.footer-title{
    font-size:20px;
    margin-bottom:20px;
    position:relative;
    padding-bottom:10px;
}

.footer-title::after{
    content:"";
    width:50px;
    height:3px;
    background:#39bc02;
    position:absolute;
    left:0;
    bottom:0;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#cfd8dc;
    text-decoration:none;
    transition:0.3s ease;
    display:inline-flex;
    align-items:center;
    gap:8px;
}

/* LINK HOVER EFFECT */
.footer-links a:hover{
    color:#39bc02;
    transform:translateX(5px);
}

.footer-contact p{
    font-size:14px;
    margin-bottom:12px;
    display:flex;
    gap:10px;
    color:#cfd8dc;
}

.footer-contact i{
    color:#39bc02;
}

/* Social Icons */
.footer-social a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    background:#2e3e47;
    border-radius:50%;
    color:#fff;
    margin-right:10px;
    transition:0.3s ease;
}

.footer-social a:hover{
    background:#39bc02;
    transform:translateY(-5px);
}

.footer-bottom{
    margin-top:40px;
    padding:20px 0;
    background:#162027;
    font-size:14px;
}

/* Responsive */
@media(max-width:768px){
    .footer-about{
        text-align:center;
    }

    .footer-social{
        justify-content:center;
    }
}

/* cta section code */
.cta-section{
    background:#dfeae4;
    padding:80px 0;
    position:relative;
    overflow:hidden;
}

/* Background Shapes */
.cta-section::before{
    content:"";
    position:absolute;
    right:-100px;
    top:-100px;
    width:400px;
    height:400px;
    background:#2bbf6a;
    border-radius:50%;
    opacity:0.15;
}

.cta-small{
    font-size:14px;
    letter-spacing:1px;
    color:#2bbf6a;
    font-weight:600;
}

.cta-title{
    font-size:48px;
    font-weight:700;
    margin:20px 0;
    line-height:1.2;
    color:#111;
}

.cta-title span{
    color:#2bbf6a;
}

.cta-btn{
    display:inline-block;
    background:#2bbf6a;
    color:#fff;
    padding:12px 30px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s ease;
}

.cta-btn:hover{
    background:#1fa458;
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

.cta-image img{
    max-width:100%;
}

/* Responsive */
@media(max-width:992px){
    .cta-title{
        font-size:38px;
    }
}

@media(max-width:768px){
    .cta-section{
        text-align:center;
        padding:60px 20px;
    }

    .cta-title{
        font-size:30px;
    }

    .cta-image{
        margin-top:40px;
    }
}