@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400&display=swap');

body {
    margin: 0;
    font-family: 'Rubik', sans-serif;
    overflow-x: hidden; 
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
    align-items: center;
    padding-left: 10%;
    animation-name: fade;
    animation-duration: 1.5s;
}

.slide.active-slide {
    display: flex;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

.caption-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.text-box {
    position: relative;
    color: #FFFFFF;
    padding: 10px 50px 15px 30px;
    width: fit-content;
    z-index: 1;
    margin: 0;
}

.text-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 2px;
    clip-path: polygon(0 0, 92% 0, 100% 100%, 0% 100%);
}

.text-box.orange {
    font-size: 52px;
    font-weight: 600;
}

.text-box.orange::before {
    background: #F1840F;
    filter: blur(3.5px);
}

.text-box.green {
    font-size: 42px;
    font-weight: 400;
    padding-right: 70px;
    margin-left: 0;
}

.text-box.green::before {
    background: #48B770;
    filter: blur(3.5px);
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #FFFFFF;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    background-color: rgba(241, 132, 15, 0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background-color 0.3s;
}

.nav-btn:hover {
    background-color: rgba(241, 132, 15, 1);
}

.nav-btn.prev { left: 30px; }
.nav-btn.next { right: 30px; }

.dots-container {
    display: flex;
    justify-content: center; 
    gap: 10px;
    padding-top: 20px;       
    padding-bottom: 20px;    
    width: 100%;
    background-color: #fff;  
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #E6E6E6; 
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #C4C4C4;
}



.products-section {
    padding: 60px 0;
    background-color: #fff;
}

.container-fluid-custom {
    max-width: 1440px; 
    margin: 0 auto;
    padding: 0 120px; 
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 40px;
    margin: 0;
}

.products-slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.nav-btn-prod {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.25));
    top: 50%;
    transform: translateY(-50%);
}

.prev-prod { left: -50px; }
.next-prod { right: -50px; }

.products-track {
    display: flex;
    gap: 24px; 
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px 20px 5px; 
    scrollbar-width: none; 
}

.products-track::-webkit-scrollbar { display: none; }

.product-card {
    flex: 0 0 277px; 
    height: 336px;   
    border: 0.88px solid #ADADAD;
    border-radius: 9px;
    background: #FFFFFF;
    transition: all 0.3s ease;
}

.product-image-box {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.img-inner {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.product-footer {
    padding: 0 20px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
}
.product-link:hover { color: #37BA77; }
.product-link:hover .product-title { color: #37BA77; }

.product-arrow {
    width: 29px;
    height: 29px;
    border: 2px solid #D19357;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.references-section {
    padding: 60px 0;
    width: 100%;
    max-width: 1230px;
    margin: 0 auto;
}

.references-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 30px 20px;
}

.references-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
}

.references-more {
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;
}
.references-more:hover { color: #37BA77; }

.references-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 20px;
    scrollbar-width: none;
}

.references-track::-webkit-scrollbar { display: none; }

.reference-card {
    flex: 0 0 200px;
    height: 191px;
    border: 1px solid #E9E9E9;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
}

.ref-logo-box {
    height: 100px;
    display: flex;
    align-items: center;
}

.ref-logo-box img {
    max-width: 140px;
    max-height: 80px;
    object-fit: contain;
}

@media (max-width: 1250px) {
    .home-info-wrapper { flex-wrap: wrap; }
    .container-fluid-custom { padding: 0 40px; }
    .prev-prod { left: 10px; }
    .next-prod { right: 10px; }
}


.product-info-section {
    position: relative;
    width: 100%;
    max-width: 1440px; 
    margin: 0 auto;
    padding: 80px 120px; 
    background-color: #FFFFFF;
    font-family: 'DM Sans', sans-serif;
    color: #050B20;
    box-sizing: border-box;
    overflow: visible;
}

.product-info-container {
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
}

.product-text-col {
    flex: 1;
    max-width: 642px; 
}

.product-info-title {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 500; 
    font-size: 64px; 
    line-height: 1.1; 
    display: flex;
    align-items: center;
    color: #050B20; 
    margin: 0 0 45px 0; 
}

.product-info-desc {
    display: flex;
    flex-direction: column;
    gap: 30px; 
}

.info-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 800; 
    font-size: 27px; 
    line-height: 31px; 
    color: #050B20; 
    display: block;
}

.info-val {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 500; 
    font-size: 20px;  
    line-height: 1.5;
    color: rgba(5, 11, 32, 0.68); 
    margin: 0;
}

.get-quote-btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    padding: 18px 45px;
    background-color: #050B20;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.get-quote-btn-main:hover {
    background-color: #F1840F; 
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-image-col {
    flex: 0 0 473px; 
}

.p-image-box {
    width: 473px;  
    height: 472px; 
    border-radius: 30px; 
    overflow: hidden;
    background-color: #f9f9f9;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.p-image-box img {
    width: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1250px) {
    .product-info-section {
        padding: 60px 40px;
    }
    .product-info-container {
        gap: 30px;
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .product-info-container {
        flex-direction: column-reverse; 
        align-items: center;
    }

    .product-text-col {
        max-width: 100%;
        text-align: center;
    }

    .product-image-col {
        flex: none;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .product-info-title {
        font-size: 48px;
        justify-content: center;
    }
    
    .info-label {
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .product-info-section {
        padding: 40px 20px;
    }

    .product-info-title {
        font-size: 36px;
    }

    .info-label {
        font-size: 20px;
    }

    .info-val {
        font-size: 16px;
    }

    .p-image-box {
        width: 100%;
        max-width: 320px;
        height: auto;
        aspect-ratio: 1/1;
        margin: 0 auto;
    }
    
    .get-quote-btn-main {
        width: 100%; 
        padding: 15px;
    }
}