/* ================= */
/* RUBIT STUDIOS */
/* ================= */


.custom-nav-link {
    transition: color 0.3s ease !important;
}

.custom-nav-link:hover {
    color: #668539 !important;
}

.custom-nav-link.active {
    color: #668539 !important;
}

.btn-wpp-nav {
    transition: all 0.3s ease !important;
}

.btn-wpp-nav:hover {
    transform: scale(1.05);
    background-color: #7fa647 !important;
    box-shadow: 0 6px 15px rgba(102, 133, 57, 0.4) !important;
}

@media (max-width: 991.98px) {

    nav.navbar:has(.collapse.show) {
        border-radius: 16px !important;
        background-color: rgba(30, 43, 17, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        transition: all 0.3s ease;
    }

    .navbar-collapse {
        width: 100%;
        margin-top: 15px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }


    .navbar-nav {
        align-items: flex-start !important;
        width: 100%;
    }

    .navbar-nav .nav-link {
        width: 100%;
        padding: 10px 0 !important;
        margin: 0 !important;
        color: #ffffff !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    

    .navbar-nav .nav-link:nth-last-of-type(2) {
        border-bottom: none;
    }

    .navbar-nav .btn {
        width: 100% !important;
        margin-left: 0 !important;
        margin-top: 15px !important;
        padding: 12px !important;
    }
}





.transition-card {
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.transition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06) !important;
}



.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    display: flex;
    position: relative;
    padding: 2rem 0;
    background-color: #f8f9fa;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeInfinite 55s linear infinite;
}


.marquee-group {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 5rem; 
    padding-right: 5rem;
}


.marquee-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 190px; 
    height: 90px;
}


.marquee-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.45); 
    transform: scale(1);
    transition: filter 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
                opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}


.marquee-item img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08); 
    cursor: pointer;
}

@keyframes marqueeInfinite {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}


@media (max-width: 768px) {
    .marquee-track {
        animation-duration: 35s; 
    }
    .marquee-group {
        gap: 3rem;
        padding-right: 3rem;
    }
    .marquee-item {
        width: 140px;
        height: 70px;
    }
}




.custom-nav-link {
    color: #ffffff !important;
    transition: color 0.35s ease-in-out !important;
}


.custom-nav-link:hover {
    color: #a3cf62 !important;
}


.nav-bar.position-fixed .custom-nav-link {
    color: #000000 !important;
}


.nav-bar.position-fixed .custom-nav-link:hover,
.nav-bar.position-fixed .custom-nav-link.active {
    color: #668539 !important;
}


.nav-bar.position-fixed .navbar-brand img {
    filter: brightness(0) !important;
    transition: filter 0.35s ease-in-out !important;
}


.nav-bar.position-fixed .navbar-toggler i {
    color: #000000 !important;
    transition: color 0.35s ease-in-out !important;
}


#inicio, nav.navbar {
    font-family: 'Montserrat', sans-serif;
}


.custom-nav-link {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.custom-nav-link:hover, 
.custom-nav-link.active {
    color: #a3cf62 !important; 
    opacity: 1;
}


.navbar-toggler:focus {
    box-shadow: none !important;
}


.sticky-top.navbar {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    margin-top: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease;
}


.sticky-top.navbar .custom-nav-link {
    color: #212529 !important;
}

.sticky-top.navbar .custom-nav-link:hover,
.sticky-top.navbar .custom-nav-link.active {
    color: #668539 !important;
}


.sticky-top.navbar .navbar-toggler i {
    color: #212529 !important;
}


@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(18, 24, 15, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        margin-top: 15px;
        padding: 20px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    

    .sticky-top.navbar .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .sticky-top.navbar .navbar-collapse .custom-nav-link {
        color: #212529 !important;
    }
}





.whatsapp-float-final {
    position: fixed !important; 
    width: 55px;
    height: 55px;
    bottom: 20px !important; 
    right: 20px !important; 
    background-color: #25d366;
    color: #fff !important;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 9998 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease-in-out; 
    text-decoration: none; 
}

.whatsapp-float-final i { 
    color: #fff !important;
}

.whatsapp-float-final:hover {
    transform: scale(1.1);
    background-color: #25d366; 
    text-decoration: none;
}

.custom-about-btn:hover {
    background-color: #7fa647 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(102, 133, 57, 0.4) !important;
}





.logo-marca {
    max-width: 120px;
    height: auto;
    object-fit: contain;
    padding: 5px;
    margin-right: 1rem;
    flex-shrink: 0;
}


.logo-simple {
    max-width: 95% !important; 
    max-height: 120px !important; 
    height: auto !important;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.logo-simple:hover {
    filter: none;
}


.logo-card-simple {
    min-height: 150px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1rem !important;
    
}








.nav-pills .nav-link {
    color: #668539;
    background-color: #e9ecef;
    margin: 5px;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 0.9rem;
    padding: 8px 15px;
}

.nav-pills .nav-link:hover {
    background-color: #ced4da;
    color: #668539;
}

.nav-pills .nav-link.active {
    color: #fff;
    background-color: #668539;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.logo-grid .card {
    border-left: 5px solid #668539;
    min-height: 150px;
}

.logo-marca {
    max-width: 100px;
    height: auto;
    object-fit: contain;
    padding: 5px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.logo-card-simple {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    padding: 10px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.logo-simple {
    max-width: 80%;
    max-height: 80px;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%); 
    transition: filter 0.3s;
}

.logo-simple:hover {
    filter: grayscale(0%);
}







.carousel-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem;
}

.carousel-caption .container {
  width: 100%;
}

.carousel-caption .btn {
  position: relative;
  z-index: 3;
}


@media (max-width: 768px) {
  .carousel-caption {
    padding: 1rem;
    justify-content: center;
    text-align: center;
  }

  .carousel-caption .row {
    justify-content: center !important;
  }

  .carousel-caption .col-lg-8 {
    width: 100%;
  }

  .carousel-caption h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }

  .carousel-caption .btn {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }
}












.custom-service-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.custom-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}










.product-item {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .product-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
  }
  
  .producto-titulo {
    text-align: center;
    margin-bottom: 1rem;
    cursor: pointer;
  }
  

.producto-titulo {
    cursor: pointer;
    min-height: 56px;        
    display: flex;           
    align-items: center;     
    justify-content: center; 
    text-align: center;      
  }
  

.object-fit-cover {
    object-fit: cover;
    object-position: center;
}


.facebook-btn:hover {
    box-shadow: 0 0 10px 4px #797878 !important;
    transition: box-shadow 0.3s ease;
}


.whatsapp-btn:hover {
    box-shadow: 0 0 10px 4px #797878 !important; 
    transition: box-shadow 0.3s ease;
}


.miqueas-link {
    font-weight: 500; 
    color: #5C9146; 
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .miqueas-link:hover {
    color: #ffffff; 
  }
  


.section-title::before,
.section-title::after {
    display: none !important;
    content: none !important;
}

.custom-line-title .line {
    flex: 1;
    height: 3px;
    background-color: #668539;
    opacity: 0.7;
    max-width: 60px;
}

.custom-line-title span {
    white-space: nowrap;
}



html {
    scroll-behavior: smooth;
  }
  
  .copyright-line {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


  
body, h1, h2, h3, h4, h5, h6, p, a, span, div {
    font-family: 'Montserrat', sans-serif !important;
  }
  


:root {
    --primary: #668539;
    --secondary: #383835;
    --light: #F7F7F7;
    --dark: #404A3D;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 500 !important;
}



#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}



.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    flex-shrink: 0;
}



.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: url(../img/banner.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}



.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 5px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 6px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}



.about-experience {
    position: absolute;
    width: 100%;
    height: 100%;
    right: -45px;
    bottom: -45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



.service-item {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 8px;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    border-radius: 10px;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    z-index: 1;
}

.service-item .service-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s ease-out;
    z-index: 2;
}

.service-item:hover .service-img::after {
    width: 0;
    left: auto;
    right: 0;
}

.service-item .service-text .service-icon {
    width: 140px;
    height: 140px;
    padding: 15px;
    margin-top: -70px;
    margin-bottom: 40px;
    background: #FFFFFF;
    border-radius: 140px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 0, 0, .1);
}

.service-item .service-text h5,
.service-item .service-text p {
    transition: .5s;
}

.service-item:hover .service-text h5,
.service-item:hover .service-text p {
    color: #FFFFFF;
}

.service-item .service-text .btn {
    color: var(--secondary);
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .25);
}

.service-item .service-text .btn:hover {
    color: var(--dark);
    background: var(--secondary);
}



.product-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.product-item .product-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    padding-top: 60px;
    transition: .5s;
}

.product-item:hover .product-overlay {
    opacity: 1;
    padding-top: 0;
}



.team-item {
    position: relative;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .btn {
    border-color: transparent;
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}



.testimonial-img {
    position: relative;
    min-height: 400px;
}

.testimonial-img::after {
    position: absolute;
    content: "\f10d";
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 200px;
    color: #EEEEEE;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.testimonial-img img {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-img img:nth-child(1) {
    top: 0;
    left: 0;
}

.testimonial-img img:nth-child(2) {
    top: 60%;
    left: 20%;
}

.testimonial-img img:nth-child(3) {
    top: 20%;
    left: 60%;
}

.testimonial-img img:nth-child(4) {
    bottom: 0;
    right: 0;
}

.testimonial-img img .animated.pulse {
    animation-duration: 2s;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 45px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
    color: var(--dark);
}



.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer {
    width: 100%;
    background-color: #212529;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.footer .container {
    max-width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
}





.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #668539;
  color: #fff !important;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

.whatsapp-float:hover {
  background-color: #404A3D;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-float i {
  font-size: 20px;
}




.whatsapp-float-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
}

.whatsapp-float-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float-btn a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}











.btn-navbar-wpp {
  background-color: #5B8C51;
  color: #fff !important;
  border-radius: 50px;
  font-weight: 500;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-navbar-wpp:hover {
  background-color: #47863b;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}





.footer,
.copyright-line {
    background-color: #2F352C !important;
}


.btn-wpp-animado {
  background-color: #5B8C51;
  color: #fff !important;
  border-radius: 50px;
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-wpp-animado:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  background-color: #5B8C51;
  color: #fff !important;
}











@media (max-width: 768px) {
  #inicio .position-relative {
    position: relative;
    height: auto;
  }

  #inicio .position-relative img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  #inicio .position-absolute {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }

  #inicio .carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    z-index: 2;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #inicio .carousel-caption .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }

  #inicio .carousel-caption .row {
    justify-content: flex-start !important;
  }

  #inicio .carousel-caption .col-lg-8 {
    width: 100%;
    text-align: left;
  }

  #inicio .carousel-caption p {
    font-size: 1rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.4;
  }

  #inicio .carousel-caption h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
  }

  #inicio .carousel-caption .btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    z-index: 3;
  }
}


@media (max-width: 768px) {
  .about-img {
    height: auto !important;
    max-height: 300px;
    object-fit: cover;
  }
}







.relative-wrapper {
  position: relative;
}



.custom-product-btn {
    background-color: #668539;
    font-size: 0.9rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(102, 133, 57, 0.2);
}

.custom-product-btn:hover {
    background-color: #557030;
    transform: scale(1.03);
    color: #ffffff !important;
    box-shadow: 0 6px 15px rgba(102, 133, 57, 0.35);
}


.product-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}


