/*AAAAAAAAAAAAAAAAAAAAAAA!!! GLOBAL RESET & TYPOGRAPHY STARTS !!!AAAAAAAAAAAAAAAAAAA*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Mulish', sans-serif;
    color: #5a6e7a;
    font-weight: 400;
    line-height: 26px;
    overflow-x: hidden;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! GLOBAL RESET & TYPOGRAPHY ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! TOP HEADER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.header-top {
    padding: 10px 0;
    background: #064E5A;
    position: relative;
    z-index: 10;
}

.header-top .shape {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.header-top .shape-1 {
    position: absolute;
    top: 0;
    right: -50px;
    width: 50%;
    height: 100%;
    background: #8CC63F;
    transform: skewX(40deg);
    border-radius: 20px 0 0 0;
    border-left: 5px solid #ffffff;
}

.header-top .shape-2 {
    position: absolute;
    top: 0px;
    left: -30px;
    bottom: 0;
    width: 10%;
    background: #8CC63F;
    border-radius: 0 0 20px 0;
    transform: skewX(40deg);
    border-right: 5px solid #ffffff;
}

.header-top-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

.header-top-list ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    margin: 0;
    list-style: none;
}

.header-top-list a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.header-top-list a i {
    color: #8CC63F;
    margin-right: 5px;
}

.header-top-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-left: auto;
}

.header-top-social span {
    color: #ffffff;
}

.header-top-social a {
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    margin-left: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.header-top-social a:hover {
    color: #8CC63F;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! TOP HEADER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! STICKY NAVBAR STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.navbar {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 9;
}

@media (min-width: 992px) {
    .navbar.sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        padding: 10px 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from { transform: translateY(-100%); }
        to { transform: translateY(0); }
    }
    
    .navbar.sticky .sticky-phone {
        display: flex !important;
    }
    
    .sticky-phone {
        display: none;
        align-items: center;
        gap: 8px;
        background: #8CC63F;
        padding: 8px 16px;
        border-radius: 30px;
        margin-left: 15px;
    }
    
    .sticky-phone a {
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
    }
}

.navbar-brand img {
    width: 160px;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: #064E5A;
    padding: 10px 18px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #8CC63F;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.theme-btn {
    background: #8CC63F;
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.theme-btn:hover {
    background: #064E5A;
    color: #fff;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! STICKY NAVBAR STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.home-section {
    background-image: url('img/hero-bg.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0 60px;
    position: relative;
    margin-top: 0;
}

.home-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 78, 90, 0.78);
    z-index: 0;
}

.home-section .container {
    position: relative;
    z-index: 2;
}

.home-thumb {
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-thumb .bg-round-shape {
    position: absolute;
    z-index: 1;
    width: 85%;
    height: auto;
    animation: rotate-1 20s linear infinite;
}

.home-thumb .main-hero-img {
    position: relative;
    z-index: 2;
    max-width: 85%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2));
}

@keyframes rotate-1 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.home-title h5 {
    background-color: rgba(255, 255, 255, 0.2);
    font-family: 'Mulish', sans-serif;
    color: #fff;
    line-height: 25px;
    font-weight: 600;
    font-size: 18px;
    padding: 5px 12px 7px 57px;
    border-radius: 4px;
    width: auto;
    display: inline-block;
    position: relative;
}

.home-title h5::before {
    content: "";
    position: absolute;
    top: 17px;
    left: 15px;
    height: 3px;
    width: 30px;
    background-color: #8CC63F;
}

.home-title h1 {
    color: #fff;
    line-height: 1.2;
    font-weight: 800;
    font-size: 52px;
    font-family: 'Mulish', sans-serif;
    margin-top: 20px;
}

.home-title h1 span {
    color: #8CC63F;
}

.home-title p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 400;
    font-size: 18px;
    margin: 25px 0 32px;
}

.home-button ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-button ul li {
    display: inline-block;
    margin-right: 30px;
    vertical-align: middle;
}

.home-button ul li a {
    display: inline-block;
    background: #8CC63F;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 15px 35px;
    border-radius: 40px;
    transition: .5s;
    text-decoration: none;
}

.home-button ul li a:hover {
    background: #064E5A;
    transform: translateY(-3px);
}

.home-button ul li p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.home-button ul li span {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    display: inline-block;
}

@media (max-width: 991px) {
    .home-section { padding: 30px 0 50px; }
    .home-title h1 { font-size: 36px; }
    .home-thumb { margin-top: 30px; }
    .home-thumb .bg-round-shape { width: 90%; }
    .home-thumb .main-hero-img { max-width: 90%; }
}

@media (max-width: 767px) {
    .home-title h1 { font-size: 28px; }
    .home-button ul li { display: block; margin-bottom: 15px; margin-right: 0; }
    .home-title h5 { font-size: 14px; padding: 5px 12px 7px 45px; }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FEATURE AREA STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.feature-area {
    position: relative;
    z-index: 5;
}

.fa-negative {
    margin-top: -80px;
}

.feature-item {
    display: flex;
    gap: 14px;
    background: #ffffff;
    border-radius: 40px;
    padding: 20px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item::before {
    content: "";
    position: absolute;
    left: 80px;
    right: 80px;
    bottom: 0;
    border-bottom: 3px solid #8CC63F;
    border-radius: 50px;
}

.feature-item .count {
    position: absolute;
    left: 20px;
    bottom: 20px;
    font-size: 50px;
    line-height: 50px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px #8CC63F;
}

.feature-icon {
    width: 75px;
    height: 75px;
    text-align: center;
    background: #8CC63F;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 40px;
    color: #fff;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    color: #064E5A;
    font-weight: 700;
}

.site-title-tagline {
    background: #8CC63F;
    border-radius: 10px;
    padding: 2px 15px 2px 3px;
    display: inline-block;
    margin-bottom: 15px;
    color: #fff;
}

.site-title-tagline i {
    background: #fff;
    color: #8CC63F;
    border-radius: 8px;
    padding: 5px;
    margin-right: 5px;
}

.site-title {
    font-size: 38px;
    font-weight: 700;
    color: #064E5A;
    margin-bottom: 20px;
}

.site-title span {
    color: #8CC63F;
}

@media (max-width: 991px) {
    .feature-item { flex-direction: column; text-align: center; }
    .feature-icon { margin: 0 auto 15px; }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FEATURE AREA STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.about-area {
    padding: 80px 0;
}

.about-left {
    position: relative;
    margin-right: 40px;
}

.about-left::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    border-radius: 200px;
    border: 10px solid #8CC63F;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.about-img img {
    border-radius: 200px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.about-experience {
    background: #8CC63F;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    text-align: center;
    border: 8px solid #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-experience h5 {
    font-size: 38px;
    color: #fff;
    margin: 0;
}

.about-experience p {
    color: #fff;
    margin: 0;
    font-size: 14px;
}

.about-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.about-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.about-icon {
    width: 60px;
    height: 60px;
    background: #8CC63F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .about-left { margin-right: 0; margin-bottom: 50px; }
    .site-title { font-size: 32px; }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! PRODUCTS SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.service-area {
    position: relative;
    background: #064E5A;
    padding: 80px 0;
}

.service-area::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url('img/shape.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: .04;
}

.service-item {
    position: relative;
    padding: 20px;
    background: #ffffff;
    border-radius: 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item .count {
    position: absolute;
    right: 30px;
    bottom: 20px;
    font-weight: 800;
    font-size: 70px;
    line-height: 70px;
    color: transparent;
    -webkit-text-stroke: 2px #8CC63F;
}

.service-img img {
    border-radius: 20px;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    margin-top: 20px;
    flex: 1;
}

.service-content h4 a {
    color: #064E5A;
    text-decoration: none;
}

.service-content h4 a:hover {
    color: #8CC63F;
}

.btn-outline {
    background: transparent;
    border: 1px solid #8CC63F;
    color: #064E5A;
    padding: 6px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: #8CC63F;
    color: #fff;
}

.text-white {
    color: #fff !important;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! PRODUCTS SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! GALLERY SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.gallery-area {
    padding: 80px 0;
    background: #ffffff;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #8CC63F;
    background: #fff;
    border-radius: 50%;
    padding: 12px;
    font-size: 20px;
}

.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.image-modal.show {
    display: flex;
}

.modal-content-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 45px;
    cursor: pointer;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! GALLERY SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! CONTACT SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.contact-area {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-info-box {
    background: #064E5A;
    border-radius: 30px;
    padding: 40px;
    height: 100%;
    color: #fff;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-details li i {
    width: 45px;
    height: 45px;
    background: #8CC63F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-box {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 0 30px rgba(0,0,0,0.05);
}

.form-control {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.form-control:focus {
    border-color: #8CC63F;
    outline: none;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! CONTACT SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.footer-area {
    background: #023B45;
    position: relative;
}

.footer-widget {
    position: relative;
    padding: 60px 0 30px;
}

.footer-logo img {
    width: 180px;
    margin-bottom: 15px;
}

.footer-widget-box p {
    color: #ffffff;
}

.footer-widget-title {
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-widget-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background: #8CC63F;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list li a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-list li a:hover {
    color: #8CC63F;
    padding-left: 5px;
}

.footer-list li a i {
    margin-right: 8px;
    color: #8CC63F;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-icon {
    width: 35px;
    height: 35px;
    background: #8CC63F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-icon i {
    color: #fff;
}

.footer-contact-text h6 {
    color: #fff;
    margin: 0 0 3px;
    font-size: 14px;
}

.footer-contact-text p, .footer-contact-text a {
    color: #ccc;
    margin: 0;
    text-decoration: none;
    font-size: 13px;
}

.footer-social {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.footer-social li a i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.footer-social li a i:hover {
    background: #8CC63F;
}

.copyright {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.copyright-text {
    color: #ccc;
    margin: 0;
}

.copyright-text a {
    color: #8CC63F;
    text-decoration: none;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! NEW SLIDER BANNER SECTION (WITHOUT IMAGE) STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.slider-banner-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slider-banner-container {
    position: relative;
    width: 100%;
    min-height: 300px;
}

.slider-banner-slide {
    position: relative;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #064E5A 0%, #0a6b7a 50%, #064E5A 100%);
    text-align: center;
}

.slider-banner-content {
    padding: 60px 20px;
    position: relative;
    z-index: 2;
}

.slider-banner-title {
    font-family: 'Mulish', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    animation: fadeInUp 0.8s ease-out;
}

/* Decorative underline effect */
.slider-banner-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #8CC63F;
    border-radius: 2px;
}

/* Subtle pattern overlay (no image, pure CSS) */
.slider-banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 2px, transparent 2px, transparent 8px);
    pointer-events: none;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .slider-banner-container {
        min-height: 250px;
    }
    
    .slider-banner-slide {
        min-height: 250px;
    }
    
    .slider-banner-title {
        font-size: 42px;
    }
    
    .slider-banner-content {
        padding: 50px 20px;
    }
}

@media (max-width: 768px) {
    .slider-banner-container {
        min-height: 200px;
    }
    
    .slider-banner-slide {
        min-height: 200px;
    }
    
    .slider-banner-title {
        font-size: 32px;
    }
    
    .slider-banner-content {
        padding: 40px 15px;
    }
    
    .slider-banner-title::after {
        width: 60px;
        height: 3px;
        bottom: -12px;
    }
}

@media (max-width: 480px) {
    .slider-banner-container {
        min-height: 180px;
    }
    
    .slider-banner-slide {
        min-height: 180px;
    }
    
    .slider-banner-title {
        font-size: 28px;
    }
    
    .slider-banner-content {
        padding: 35px 15px;
    }
    
    .slider-banner-title::after {
        width: 50px;
        height: 3px;
        bottom: -10px;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! NEW SLIDER BANNER SECTION (WITHOUT IMAGE) ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! PRODUCT SPECIFICATIONS BANANA LEAF SECTION STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.product-spec-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.product-spec-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(140, 198, 63, 0.05);
    border-radius: 50%;
    transform: translate(150px, -150px);
}

.product-spec-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250px;
    height: 250px;
    background: rgba(6, 78, 90, 0.05);
    border-radius: 50%;
    transform: translate(-100px, 100px);
}

.product-spec-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.product-spec-left {
    flex: 1;
    min-width: 280px;
}

.product-spec-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.product-spec-image:hover {
    transform: translateY(-8px);
}

.product-spec-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.product-spec-image:hover img {
    transform: scale(1.05);
}

.product-spec-right {
    flex: 1;
    min-width: 300px;
}

.product-spec-header {
    margin-bottom: 25px;
}

.product-spec-tagline {
    display: inline-block;
    background: #8CC63F;
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-spec-tagline i {
    margin-right: 8px;
}

.product-spec-title {
    font-size: 36px;
    font-weight: 800;
    color: #064E5A;
    margin: 0;
    line-height: 1.2;
}

.product-spec-title span {
    color: #8CC63F;
}

.product-spec-table-wrapper {
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.product-spec-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.product-spec-table tr {
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease;
}

.product-spec-table tr:hover {
    background: #f8f9fa;
}

.product-spec-table tr:last-child {
    border-bottom: none;
}

.spec-label {
    padding: 14px 20px;
    font-weight: 700;
    color: #064E5A;
    width: 35%;
    background: #f8f9fa;
    font-size: 15px;
}

.spec-value {
    padding: 14px 20px;
    color: #5a6e7a;
    font-size: 15px;
}

.product-spec-bulk {
    background: linear-gradient(135deg, #064E5A 0%, #0a6b7a 100%);
    border-radius: 20px;
    padding: 20px 25px;
    margin-bottom: 30px;
}

.bulk-info {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.bulk-info i {
    font-size: 42px;
    color: #8CC63F;
}

.bulk-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.bulk-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.product-spec-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.product-spec-actions .theme-btn {
    background: #8CC63F;
    color: #fff;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.product-spec-actions .theme-btn:hover {
    background: #064E5A;
    transform: translateY(-3px);
}

.download-btn {
    background: transparent;
    border: 2px solid #8CC63F;
    color: #064E5A;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.download-btn:hover {
    background: #8CC63F;
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .product-spec-section {
        padding: 60px 0;
    }
    
    .product-spec-wrapper {
        flex-direction: column;
        gap: 35px;
    }
    
    .product-spec-left {
        min-width: auto;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .product-spec-title {
        font-size: 30px;
    }
    
    .spec-label, .spec-value {
        padding: 12px 15px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .product-spec-section {
        padding: 50px 0;
    }
    
    .product-spec-title {
        font-size: 28px;
    }
    
    .product-spec-table-wrapper {
        overflow-x: auto;
    }
    
    .product-spec-table {
        min-width: 500px;
    }
    
    .bulk-info {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .bulk-info i {
        font-size: 48px;
    }
    
    .bulk-text {
        text-align: center;
    }
    
    .product-spec-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .product-spec-title {
        font-size: 24px;
    }
    
    .product-spec-tagline {
        font-size: 12px;
    }
    
    .product-spec-actions .theme-btn,
    .download-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! PRODUCT SPECIFICATIONS BANANA LEAF SECTION ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/