
.hero-section {
    background-color: #C2E7EC; /* Light blue background */
    padding: 100px 0;
}
.hero-text h1 {
    font-weight: bold;
    font-size: 60px;
    color: #222; /* Dark text */
}
.hero-text p {
    font-size: 21px;
    color: #444;
}
.hero-image img {
    max-width: 100%;
    height: auto;
}
.key-features {
text-align: center;
padding: 20px;
}
.key-features h1,.machine-layout h1{
font-size: 48px;
}
/* .section-title {
font-size: 24px;
font-weight: bold;
margin-bottom: 20px;
} */
.key-features{
width: 70%;
margin: 0 auto;
}
.feature-carousel .item {
position: relative;
border-radius: 10px;
overflow: hidden;
text-align: center;
}

.feature-carousel .item img {
width: 100%;
height: auto;
border-radius: 10px;
}

.caption {
position: absolute;
bottom: 0;
width: 100%;
background: #46a9b6;
color: white;
padding: 10px;
font-size: 14px;
text-align: center;
}

/* Customize Navigation Arrows */
.feature-carousel .custom-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 40px; /* Adjust arrow button size */
height: 40px;
background: #fff; /* Greyish-green color */
color: #75857A;
font-size: 20px;
font-weight: bold;
display: flex;
align-items: center;
justify-content: center;
border-radius: 5px; /* Rounded corners */
cursor: pointer;
transition: background 0.3s ease;
box-shadow: 2px 2px 5px rgb(175, 175, 175);
}
.feature-carousel .custom-nav:hover{
background-color: #75857A;
color: #fff;
}

/* Left Arrow */
.feature-carousel .prev-nav {
left: -19px; /* Adjust position */
}

/* Right Arrow */
.feature-carousel .next-nav {
right: -22px; /* Adjust position */
}

/* Hover Effect */
.feature-carousel .custom-nav:hover {
background: #5a6b5e; /* Darker greenish shade */
}

/* Make sure arrows appear inside the carousel container */
.feature-carousel {
position: relative;
}

.feature-carousel .owl-nav {
position: absolute;
top: 50%;
width: 100%;
transform: translateY(-50%);
}
.feature-carousel .item{
border: 1px solid #000;
}
.feature-carousel .owl-nav.disabled {
display: block !important;
}

.specs-container {
    width: 35%;
    margin: 20px auto;
    text-align: center;
}
.specification h1 {
text-align: center;
margin-top: 50px;
font-size: 48px;
}
table {
    /* width: 60%; */
    margin: 0 auto;
    border-collapse: collapse;
    border: 1px solid #000; /* Outer border */
}
th, td {
    border: 1px solid #000; /* Borders around each cell */
    padding: 10px;
    text-align: left;
    font-size: 18px;
}
tr:nth-child(even) {
    background-color: #f2f2f2;
}
tr {
    border-bottom: 1px solid #000 !important; /* Border below each row */
}
td:first-child, th:first-child {
    border-right: 1px solid #000; /* Middle border between columns */
}
.packaging{
background-color: #80c5cd;
}
.packaging p{
    font-size: 20px;
}
.utilities{
    background-color: #46a9b6;
}
.utilities p{
    font-size: 20px;
}


/* Media Query */
@media(max-width:768px){
    .hero-section h1{
        font-size: 40px;
    }
    .features h1{
        font-size: 25px;
    }
    .key-features h1, .machine-layout h1, .specification h1 {
        font-size: 30px;
    }
    .specification{
        padding: 20px;
    }
    .caption{
        font-size: 10px;
    }
    .packaging h1,.utilities h1{
        font-size: 25px;
    }
    .packaging p,.utilities p{
        font-size: 15px;
    }

    .table-container {
        overflow-x: auto; 
        width: 100%;
    }
    table {
        width: 100%; 
    }
    th, td {
        font-size: 14px; 
        padding: 8px;
    }
}