html {
   
    scroll-behavior: smooth;
    
   
   
    scroll-padding-top: 110px; 
}

body {
    font-family: 'Montserrat', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

p {
    font-weight: 400;
}

.fw-light {
    font-weight: 300;
}

.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.bg-default{
    background-color: #1d4e33;
}

.unselectable{
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.shadow{
    text-shadow:rgba(0, 0, 0, 0.1);
}

.banner-section {
    background-image: url('../img/bg.png'); 
    
    background-size: cover;
    
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    
    position: relative;
    min-height: 100vh;
    padding-top: 80px;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, 0.1); 
    
    z-index: 0;
}

.banner-section > * {
    position: relative;
    z-index: 1;
}

.main-title {
    color: #2e5c38;
    font-size: 3.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.subtitle {
    color: #555;
    font-size: 1.2rem;
    font-weight: 300;
}

.main-text-box {
    color: #3b6e46;
    line-height: 1.6;
}

.decor-branch {
    position: absolute;
    z-index: 0; 
    pointer-events: none; 
    opacity: 1;
}

.decor-top-right {
    position:absolute;
    top: 0;
    right: -40px;
    
    width: 90%;
    max-width: 900px;
    transform: translate(10%, -20%);
    filter: blur(2px);
}

.decor-left {
    top: 30%;
    left: 0;
    width: 60%; 
    max-width: 700px;
    transform: translate(-30%, 0);
    
    filter: blur(2px);
}

@media (min-width: 992px) {
    .decor-top-right {
        width: 45vw; 
        transform: translate(10%, -15%);
    }

    .decor-left {
        width: 35vw; 
        top: 20%;
        transform: translate(-20%, 0);
    }
}

.z-index-1 {
    z-index: 1;
}

.productSwiper {
        width: 100%;
        padding-top: 80px !important; 
        padding-bottom: 100px !important; 
        overflow: hidden;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 280px !important; 
    height: 400px !important;
    position: relative; 
}
.product-card {
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(47, 92, 56, 0.1);
    transition: all 0.3s ease;
}
.product-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.swiper-slide-active .product-card {
    box-shadow: 0 20px 50px rgba(47, 92, 56, 0.3);
    transform: scale(1.05);
    border: 2px solid #2F5C38;
}

.benefit-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 15px;
    height: 100%;
    text-align: center;
    border: 1px solid rgba(47, 92, 56, 0.05);
    box-shadow: 0 10px 20px rgba(47, 92, 56, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.benefit-card:hover {
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(47, 92, 56, 0.15); 
    border-color: #2F5C38; 
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #5A5A5A;
    text-transform: uppercase;
    margin: 0;
    transition: color 0.3s;
}

.benefit-card:hover .benefit-title {
    color: #2F5C38;
}

.btn-consultation {
    display: inline-block;
    background-color: #2F5C38;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(47, 92, 56, 0.3);
    transition: all 0.3s ease;
}

.btn-consultation:hover {
    background-color: #244a2c;
    box-shadow: 0 15px 30px rgba(47, 92, 56, 0.5);
    transform: scale(1.05);
    color: #fff;
}

.decor-bottom-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    z-index: 0;
    opacity: 0.8;
    pointer-events: none;
    transform: translate(-20%, 20%);
    filter: blur(3px);
}

@media (min-width: 992px) {
    .decor-bottom-left {
        width: 500px;
        transform: translate(-10%, 10%);
    }
}

.catalog-card {
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s ease;
}

.catalog-card:hover {
    transform: translateY(-5px);
}

.catalog-card {
    background-color: #f9fbf8;
    border-radius: 20px;
    padding: 20px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 15px 35px rgba(47, 92, 56, 0.2);
    border: 1px solid rgba(47, 92, 56, 0.15);
}


.catalog-card:hover {
    transform: translateY(-8px);
    background-color: #ffffff;
    box-shadow: 0 15px 35px rgba(47, 92, 56, 0.3);
    border-color: rgba(47, 92, 56, 0.3);
}


.catalog-card-img {
    height: 180px; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.catalog-card-img img {
    min-height: 95%;
    min-width: 95%;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
}

.catalog-card:hover .catalog-card-img img {
    transform: scale(1.08);
}


.catalog-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.catalog-card-action {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2F5C38;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.catalog-card:hover .catalog-card-action {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .modal-dialog {
        margin: 10px;
    }
    .col-md-5 {
        border-radius: 30px 30px 0 0 !important;
    }
    .modal-content {
        overflow: hidden;
    }
}

.navbar {
    transition: all 0.3s ease;
    z-index: 1030;
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    
    background-color: transparent !important; 
    backdrop-filter: blur(20px); 
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-scrolled {
    background-color: #1d4e33 !important; 
    
    padding:20px 0;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}




.contact-form-card {
    background-color: #EEF3E9;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(47, 92, 56, 0.08);
}


.custom-input {
    border-radius: 15px;
    padding: 14px 20px;
    border: 1px solid rgba(47, 92, 56, 0.2);
    background-color: #fff;
    transition: all 0.3s ease;
}


.custom-input:focus {
    border-color: #2F5C38;
    box-shadow: 0 0 0 3px rgba(47, 92, 56, 0.1);
    outline: none;
}


.btn-submit {
    background-color: #2F5C38;
    color: white;
    border-radius: 15px;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
}

.btn-submit:hover {
    background-color: #244a2c;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(47, 92, 56, 0.2);
    color: white;
}


.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border-radius: 15px;
    padding: 14px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-whatsapp:hover {
    background-color: #20b858;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    color: white;
}


.about-company {
    overflow: hidden;
}


.about-collage img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-collage img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(47, 92, 56, 0.2) !important;
}


.fact-badge {
    transform: translate(-15%, 15%);
}


@media (max-width: 768px) {
    .fact-badge {
        transform: translate(10%, 15%);
    }
    .about-collage {
        padding-bottom: 20px;
    }
}



.certificate-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    padding: 5px;
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(47, 92, 56, 0.2);
}

.certificate-card img {
    width: 100%;
    border-radius: 5px;
    display: block;
}


.zoom-overlay {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background-color: rgba(47, 92, 56, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 5px;
}

.certificate-card:hover .zoom-overlay {
    opacity: 1;
}



.review-card {
    background-color: #ffffff;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(47, 92, 56, 0.05);
    border: 1px solid rgba(47, 92, 56, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(47, 92, 56, 0.12);
}


.avatar-circle {
    width: 50px;
    height: 50px;
    background-color: #2F5C38;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.hover-opacity {
    transition: opacity 0.3s ease;
}
.hover-opacity:hover {
    opacity: 0.7;
}




.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}


.footer-link:hover {
    color: #ffffff;
    transform: translateX(8px);
}


.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: white;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-icon:hover {
    background-color: #2F5C38;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(47, 92, 56, 0.4);
}



.feature-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(47, 92, 56, 0.08);
    background-color: #fff !important;
}

.tracking-wide {
    letter-spacing: 2px;
}

.stat-item h2 {
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}




.swiper-slide .product-card {
   
    background-color: transparent;
    box-shadow: none;
    padding: 2rem 1rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}


.swiper-slide-active .product-card {
    background-color: #ffffff;
    box-shadow: 0 15px 40px rgba(47, 92, 56, 0.15);
    border-color: rgba(47, 92, 56, 0.1);
    transform: scale(1.05);
}


.product-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.product-card:hover .badge {
    background-color: #4CAF50 !important;
}


.product-img-wrap img {
    transition: transform 0.4s ease;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.swiper-slide-active .product-img-wrap img {
    transform: scale(1.1);
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.2));
}





.modal-img-col {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
   
    min-height: 350px; 
}

.product-modal-img {
    width: auto;
    max-width: 90%;
   
    max-height: 75vh; 
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.12));
    transition: transform 0.3s ease;
}


@media (max-width: 767.98px) {
    .product-modal-img {
       
        max-height: 45vh;
        padding: 20px 0;
    }
    .modal-img-col {
        min-height: auto;
    }
}

#productModal.show .product-modal-img {
    transform: scale(1);
}
#productModal:not(.show) .product-modal-img {
    transform: scale(0.9);
}

.btn-close {
   
    filter: brightness(0); 
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.btn-close:hover {
    opacity: 1;
    transform: rotate(90px);
}
