.btn-one {
    background-color: #68D582;
}
.btn-one:hover, .btn-two:hover , .line {
    background-color: #1B9D59 !important;
}

.footer-three .footer-contact .social-icon li a {
    width: 100px;
    height: 100px;
    font-size: 60px;
}
.footer-three .footer-contact .social-icon li a:hover {
    background-color: #1B9D59 !important;
}
.theme-main-menu .navbar-toggler {
    background-color: #1B9D59 !important;
}

.accordion-item {
    color: rgba(255, 255, 255, .7) !important;
}
/* Custom Button Styles */
.mynte-btn {
    display: inline-block;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    border: none;
    cursor: pointer;
}

.mynte-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transform: translateX(-100%);
    transition: all 0.4s ease;
}

.mynte-btn:hover:before {
    transform: translateX(0);
}

.mynte-btn-primary {
    background: linear-gradient(45deg, #1B9D59, #68D582);
    color: #fff;
    box-shadow: 0 4px 15px rgba(104, 213, 130, 0.4);
}

.mynte-btn-primary:hover {
    box-shadow: 0 6px 20px rgba(104, 213, 130, 0.6);
    transform: translateY(-2px);
}

.mynte-btn-secondary {
    background: linear-gradient(45deg, #0D1A1C, #293638);
    color: #fff;
    box-shadow: 0 4px 15px rgba(13, 26, 28, 0.3);
    border: 1px solid #68D582;
}

.mynte-btn-secondary:hover {
    box-shadow: 0 6px 20px rgba(13, 26, 28, 0.5);
    transform: translateY(-2px);
    background: linear-gradient(45deg, #162426, #354648);
}

.card-style-six .icon {
    height: 200px;
}
/* Mobile Responsive Button Styles */
@media (max-width: 768px) {
    .buttons-container {
        flex-direction: column;
        width: 100%;
    }
    
    .mynte-btn {
        display: block;
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 15px;
    }
    
    .mynte-btn:last-child {
        margin-bottom: 0;
    }

    .footer-three .footer-contact .social-icon li a {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    .footer-contact {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 90px;
        background-color: #0c0c0c;
        left: 50%;
        height: auto;
        max-height: 100vh;
        overflow-y: auto;
        clear: both;
        width: 100%;
        max-width: calc(100vw - 26px);
        z-index: 9999;
        transform: translateX(-50%) translateY(-20px);
        padding: 0 0 20px;
        transition: all .3s ease-in-out;
        opacity: 0;
        visibility: hidden;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        border-radius: 0 0 10px 10px;
    }

    .navbar-collapse.show {
        display: block !important;
        transform: translateX(-50%) translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .collapse:not(.show) {
        display: none !important;
    }
}

/* Banner Styles */
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.text-gradient {
    background: linear-gradient(91.35deg, #1B9D59 3.81%, #7be995 90.59%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 991px) {
    .hero-heading .fs-60 {
        font-size: 42px !important;
    }
    
    .hero-heading .fs-70 {
        font-size: 50px !important;
    }
}

@media (max-width: 767px) {
    .hero-heading .fs-60 {
        font-size: 36px !important;
    }
    
    .hero-heading .fs-70 {
        font-size: 42px !important;
    }
}

/* Floating elements for banner */
.floating-element {
    animation: floating 3s ease-in-out infinite;
}

.hero-banner-one .shape {
    animation: floating 4s ease-in-out infinite;
}

.hero-banner-one .shape-1 {
    animation-duration: 4s;
}

.hero-banner-one .shape-2 {
    animation-duration: 5s;
}

.hero-banner-one .shape-3 {
    animation-duration: 6s;
}