* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;;
}
body {
    background: #f8f9fa;
    user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
}
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.slider {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 1s ease-in-out;
}
.slide {
    min-width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
.slide1 { background: url('https://source.unsplash.com/1600x900/?automation') no-repeat center; }
.slide2 { background: url('https://source.unsplash.com/1600x900/?factory') no-repeat center; }
.slide3 { background: url('https://source.unsplash.com/1600x900/?technology') no-repeat center; }
.services {
margin-top: 20px;
text-align: center;
}

.services h2 {
font-size: 32px;
font-weight: 700;
text-transform: uppercase;
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 15px;
}

.services h2 span {
background: linear-gradient(135deg, #007BFF, #00C6FF);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.services h2 span:last-child {
display: block;
width: 60px;
height: 4px;
background: #007BFF;
margin-top: 8px;
border-radius: 2px;
}

/* Slider Container */
.service-slider-container {
position: relative;
max-width: 80%;
margin: auto;
overflow: hidden;
}

/* Slider */
.service-slider {
display: flex;
transition: transform 0.5s ease-in-out;
}

/* Individual Slide */
.service-slide {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive Grid */
gap: 20px;
min-width: 100%;
}

/* Service Box */
.service {
background: #ffffff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
text-align: center;
transition: 0.3s;
}

.service:hover {
transform: translateY(-5px);
}

/* Icons */
.service i {
font-size: 40px;
color: #007BFF;
margin-bottom: 10px;
}

.service h3 {
color: #007BFF;
}

.service p {
color: #333;
}

.service button {
background: #007BFF;
color: #fff;
border: none;
padding: 8px 15px;
cursor: pointer;
border-radius: 5px;
margin-top: 10px;
}

.service button:hover {
background: #0056b3;
}

/* Slider Indicators */
.slider-indicators {
text-align: center;
margin-top: 15px;
}

.dot {
height: 12px;
width: 12px;
margin: 0 5px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
cursor: pointer;
}

.active {
background-color: #007BFF;
}
/* General Styling */
/* About Section */
.about-us {
background: #f4f4f4;
padding: 80px 10%;
display: flex;
justify-content: center;
align-items: center;
}

/* About Container */
.about-container {
display: flex;
align-items: center;
gap: 50px;
max-width: 1200px;
width: 100%;
}

/* About Image */
.about-image img {
width: 100%;
max-width: 500px;
border-radius: 15px;
box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease-in-out;
}

.about-image img:hover {
transform: scale(1.05);
}

/* About Content */
.about-content {
max-width: 600px;
}

.about-content h2 {
font-size: 42px;
font-weight: 800;
color: green;
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 1px;
}

.about-content p {
font-size: 18px;
color: #666;
line-height: 1.6;
margin-bottom: 20px;
}

/* Learn More Button */
.learn-more {
background: #ff5733;
color: #fff;
padding: 12px 25px;
border: none;
border-radius: 30px;
font-size: 16px;
font-weight: 700;
cursor: pointer;
transition: all 0.3s ease-in-out;
}

.learn-more:hover {
background: #d84315;
transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
.about-container {
flex-direction: column;
text-align: center;
}

.about-image img {
max-width: 100%;
}
}

/* Reviews Section */
.reviews {
text-align: center;
padding: 80px 20px;
background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
color: #333;
position: relative;
}

/* Title Styling */
.reviews h2 {
font-size: 36px;
font-weight: 700;
position: relative;
display: inline-block;
padding-bottom: 10px;
}

.reviews h2::after {
content: "";
display: block;
width: 80px;
height: 3px;
background: #007bff;
margin: 8px auto;
border-radius: 3px;
}

/* Review Container */
.review-container {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
margin-top: 40px;
}

/* Review Cards */
.review {
background: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(15px);
border-radius: 15px;
padding: 25px;
max-width: 320px;
box-shadow: 0 10px 30px rgba(0, 123, 255, 0.15);
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.3);
position: relative;
overflow: hidden;
cursor: pointer;
}

/* Hover Effect */
.review:hover {
transform: translateY(-8px);
box-shadow: 0 15px 40px rgba(0, 123, 255, 0.25);
}

/* Floating Effect */
.review::before {
content: "";
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(0, 123, 255, 0.3), transparent 60%);
opacity: 0;
transition: opacity 0.4s;
}

.review:hover::before {
opacity: 1;
}

/* Review Text */
.review p {
font-size: 18px;
color: #444;
line-height: 1.6;
font-style: italic;
}

/* Reviewer Name */
.review h4 {
margin-top: 15px;
font-size: 18px;
font-weight: bold;
color: #007bff;
}

/* Responsive Design */
@media (max-width: 1024px) {
.review-container {
flex-direction: column;
align-items: center;
}
}






/* Footer Styling */
.footer {
    background: #016117;
    color: white;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
}

/* Footer Container */
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    padding-bottom: 20px;
}

/* Footer Columns */
.footer-column {
    text-align: left;
}

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    padding-bottom: 8px;
}

.footer-column h3::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #1ed62d;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

/* Footer Text */
.footer-column p,
.footer-column ul {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.85;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin: 10px 0;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    font-weight: 500;
    display: inline-block;
    position: relative;
}

.footer-column ul li a::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #1ed62d;
    bottom: -3px;
    left: 0;
    transition: width 0.3s ease-in-out;
}

.footer-column ul li a:hover {
    color: #1ed62d;
}

.footer-column ul li a:hover::before {
    width: 100%;
}

/* Social Media Icons */
.social-icons {
    margin-top: 20px;
    display: flex;
    justify-content: start;
    gap: 15px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 204, 0, 0.2);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
}

.social-icons a img {
    width: 24px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.social-icons a:hover::before {
    transform: scale(1.3);
}

.social-icons a:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 15px rgba(255, 204, 0, 0.5);
}

.social-icons a:hover img {
    transform: scale(1.1);
    opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
    font-size: 15px;
    opacity: 0.7;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    text-align: center;
}

/* Why Choose Us - Ultra Modern Style */
.why-choose-us {
text-align: center;
padding: 80px 20px;
background: linear-gradient(135deg, #f3f3f3, #e0e0e0);
color: #333;
position: relative;
}

/* Heading Style */
.why-choose-us h2 {
font-size: 42px;
font-weight: 800;
color: #222;
text-transform: uppercase;
letter-spacing: 1.2px;
position: relative;
display: inline-block;
padding-bottom: 12px;
transition: 0.3s ease-in-out;
}

/* Underline Effect */
.why-choose-us h2::after {
content: "";
display: block;
width: 90px;
height: 5px;
background: #ff5733;
margin: 10px auto;
border-radius: 5px;
}

/* Container */
.choose-container {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 30px;
margin-top: 50px;
padding: 0 20px;
}

/* Box Styling */
.choose-box {
background: #e0e0e0;
border-radius: 20px;
padding: 40px 25px;
text-align: center;
width: 280px;
box-shadow: 8px 8px 15px #bebebe, -8px -8px 15px #ffffff;
transition: all 0.4s ease-in-out;
position: relative;
overflow: hidden;
}

/* Hover Effect */
.choose-box:hover {
transform: translateY(-10px);
box-shadow: 10px 10px 20px #bbb, -10px -10px 20px #fff;
}

/* Icons */
.choose-box i {
font-size: 50px;
color: #ff5733;
margin-bottom: 18px;
display: block;
transition: all 0.3s ease-in-out;
text-shadow: 0 4px 10px rgba(255, 87, 51, 0.5);
}

.choose-box:hover i {
transform: rotate(10deg) scale(1.2);
text-shadow: 0 5px 15px rgba(255, 87, 51, 0.7);
}

/* Headings */
.choose-box h3 {
font-size: 26px;
font-weight: 700;
color: #222;
margin-bottom: 12px;
}

/* Paragraphs */
.choose-box p {
font-size: 17px;
color: #555;
line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
.choose-container {
flex-direction: column;
align-items: center;
}
}





/* clientele  */
/* Full Section Styling */
.clientele-section {
background: lightgreen; 
color: #ffffff;
text-align: center;
padding: 60px 20px;
border-radius: 15px;
box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
animation: fadeIn 1.5s ease-in-out;
}

/* Heading */
.clientele-section h2 {
font-size: 2.5rem;
font-weight: bold;
margin-bottom: 15px;
text-transform: uppercase;
letter-spacing: 2px;
background: linear-gradient(45deg, #f0a500, #fcd34d);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: slideInDown 1s ease-out;
}

/* Description */
.clientele-description {
font-size: 1.2rem;
max-width: 800px;
margin: 0 auto 40px auto;
line-height: 1.8;
color: #d9d9d9;
animation: fadeInUp 1.2s ease-out;
}

/* Flexbox for Two-Column Layout */
.client-slider {
text-align: center;
padding: 50px 0;
background-color: #f8f9fa;
}

.client-slider h2 {
font-size: 32px;
color: #333;
margin-bottom: 20px;
text-transform: uppercase;
}

.swiper {
width: 80%;
margin: auto;
padding: 20px 0;
}

.swiper-slide {
display: flex;
justify-content: center;
align-items: center;
background: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.swiper-slide img {
max-width: 100px;
height: auto;
filter: grayscale(100%);
transition: filter 0.3s;
}

.swiper-slide img:hover {
filter: grayscale(0%);
}



.client-slider {
    text-align: center;
    background: rgba(255, 255, 255, 0.2); /* Subtle transparency */
    color: #222; /* Dark text for readability */
    padding: 50px 30px;
    border-radius: 12px; /* Smooth edges */
    backdrop-filter: blur(10px); /* Soft frosted glass effect */
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle glass outline */
    transition: all 0.3s ease-in-out;
}

/* Hover Effect for Minimal Interactivity */
.client-slider:hover {
    background: rgba(255, 255, 255, 0.25);
}


.client-slider h2 {
font-size: 24px;
margin-bottom: 10px;
color: black !important;
}

.client-slider p {
font-size: 16px;
margin-bottom: 20px;
color: black;
}

.logos {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background: rgba(255, 255, 255, 0.5); /* Increased visibility */
    backdrop-filter: blur(5px); /* Softer glass effect */
    padding: 15px 0;
    border-radius: 10px; /* Smooth rounded edges */
    border: 1px solid rgba(255, 255, 255, 0.4); /* Slight border for visibility */
}

/* Optional: If logos are inside an <img> tag, make sure they are properly visible */
.logos img {
    max-height: 60px; /* Adjust logo size */
    margin: 0 20px; /* Add spacing */
    opacity: 1; /* Full visibility */
}


.logos-slide {
display: flex;
gap: 40px;
animation: scroll 15s linear infinite;
}

.logos-slide span {
font-size: 18px;
color: black;
background: rgba(0, 0, 0, 0.1);
padding: 10px 20px;
border-radius: 5px;
display: inline-block;
white-space: nowrap;
}

@keyframes scroll {
from {
transform: translateX(100%);
}
to {
transform: translateX(-100%);
}
}
/* youtube  */
.video-gallery {
text-align: center;
background: #f8f8f8;
padding: 40px 20px;
}

.video-gallery h2 {
font-size: 28px;
margin-bottom: 10px;
color: #222;
}

.video-gallery p {
font-size: 16px;
margin-bottom: 20px;
color: #555;
}

/* Video Grid */
.video-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
max-width: 1200px;
margin: 0 auto;
padding: 10px;
}

/* Individual Video Box */
.video {
position: relative;
width: 100%;
padding-bottom: 56.25%; /* 16:9 aspect ratio */
background: #000;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.video:hover {
transform: scale(1.05);
}

/* Video Iframe */
.video iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
border-radius: 10px;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
.video-gallery h2 {
font-size: 24px;
}

.video-gallery p {
font-size: 14px;
}

.video-container {
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
}

@media (max-width: 480px) {
.video-gallery h2 {
font-size: 20px;
}

.video-gallery p {
font-size: 12px;
}

.video-container {
grid-template-columns: 1fr;
}
}

/* product  */

:root {
/*========== Colors ==========*/
/*Color mode HSL(hue, saturation, lightness)*/
--first-color: hsl(82, 60%, 28%);
--title-color: hsl(0, 0%, 15%);
--text-color: hsl(0, 0%, 35%);
--body-color: hsl(0, 0%, 95%);
--container-color: hsl(0, 0%, 100%);

/*========== Font and typography ==========*/
/*.5rem = 8px | 1rem = 16px ...*/
--body-font: "Poppins", sans-serif;
--h2-font-size: 1.25rem;
--small-font-size: .813rem;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1120px) {
:root {
--h2-font-size: 1.5rem;
--small-font-size: .875rem;
}
}
.container {
display: grid;
place-items: center;
margin-inline: 1.5rem;
padding-block: 5rem;
}

.card__container {
display: grid;
row-gap: 3.5rem;
}

.card__article {
position: relative;
/* overflow: hidden; */
}

.card__img {
width: 328px;
border-radius: 1.5rem;
}

.card__data {
/* width: 280px; */
/* background-color: var(--container-color); */
padding: 1.5rem 2rem;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
border-radius: 1rem;
/* position: absolute;
bottom: -9rem;
left: 0;
right: 0; */
margin-inline: auto;
/* opacity: 0; */
/* margin-top: -20px; */
transition: opacity 1s 1s;
position: relative; 
    z-index: 999; /* High eno
}

.card__description {
/* display: block; */
font-size: var(--small-font-size);
margin-bottom: .25rem;
}

.card__title {
font-size: var(--h2-font-size);
font-weight: 300;
color: var(--title-color);
margin-bottom: .75rem;
}

.card__button {
text-decoration: none;
font-size: var(--small-font-size);
font-weight: 500;
color: var(--first-color);
}

/* .card__button:hover {
text-decoration: underline;
} */

/* Naming animations in hover */
/* .card__article:hover .card__data {
animation: show-data 1s forwards;
opacity: 1;
transition: opacity .3s;
} */

/* .card__article:hover {
animation: remove-overflow 2s forwards;
}

.card__article:not(:hover) {
animation: show-overflow 2s forwards;
}

.card__article:not(:hover) .card__data {
animation: remove-data 1s forwards;
} */

/* Card animation */
/* @keyframes show-data {
50% {
transform: translateY(-10rem);
}
100% {
transform: translateY(-7rem);
}
} */

/* @keyframes remove-overflow {
to {
overflow: initial;
}
} */

/* @keyframes remove-data {
0% {
transform: translateY(-7rem);
}
50% {
transform: translateY(-10rem);
}
100% {
transform: translateY(.5rem);
}
} */

/* @keyframes show-overflow {
0% {
overflow: initial;
pointer-events: none;
}
50% {
overflow: hidden;
}
} */

/*=============== BREAKPOINTS ===============*/
/* For small devices */
/* @media screen and (max-width: 340px) {
.container {
margin-inline: 1rem;
}

.card__data {
width: 250px;
padding: 1rem;
}
} */

/* For medium devices */
@media screen and (min-width: 768px) {
.card__container {
grid-template-columns: repeat(2, 1fr);
column-gap: 1.5rem;
}
}

/* For large devices */
@media screen and (min-width: 1120px) {
.container {
/* height: 100vh; */
}

.card__container {
grid-template-columns: repeat(5, 1fr);
border-radius: 10px;
}
.card__img {
width: 220px;
}
.card__data {
width: 300px;
padding-inline: 1rem;
}
}

/* .pro h2::after {
content: '';
width: 10%;
height: 4px;
background-color: #1d2a38;
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
border-radius: 2px;
transition: width 0.3s ease-in-out;
}

.pro h2:hover::after {
width: 80%;
} */ */

/* feature products  */
.product-section {
    text-align: center;
    padding: 50px 20px;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.section-desc {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tab {
    padding: 10px 20px;
    border: none;
    background: green;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.tab:hover, .tab.active {
    background: green;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    justify-content: center;
    max-width: 1100px;
    margin: auto;
}

.product-card {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.product-card:hover {
    transform: scale(1.05);
}

.view-all-btn {
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    background: green;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.view-all-btn:hover {
    background: rgb(45, 218, 54);
} 


/* Section Styling */
.pro {
    text-align: center;
    padding: 20px 20px;
    background: #f9f9f9;
}
.harvest-title {
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    letter-spacing: 2px;
    color: #2E7D32; /* Solid Green Color */
    padding: 15px;
    display: inline-block;
    border-radius: 5px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

.pro h2 {
    /* font-size: 32px; */
    font-weight: bold;
    color: #2c6e49;
    margin-top: 20px;
}

/* Grid Container */
.card__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 3 columns */
    gap: 20px;
    max-width: 1100px;
    margin: auto;
    margin-top: 10px;
}

/* Individual Card Styling */
.card__article {
    /* background: #ffffff; */
    border-radius: 10px;
    overflow: hidden;
    margin-top: 25px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease-in-out;
}

.card__article:hover {
    transform: scale(1.05);
}

/* Image Styling */
.card__img {
    width: 100%;
    height: 200px; /* Fixed height */
    object-fit: cover;
}

/* Card Content */
.card__data {
    padding: 15px;
    text-align: center;
}

.card__description {
    font-size: 16px;
    color: #333;
    display: block;
    margin-bottom: 10px;
}

.card__button {
    display: inline-block;
    padding: 8px 15px;
    background: #2c6e49;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.card__button:hover {
    background: #1f5035;
}

/* Responsive Design */
@media (max-width: 992px) {
    .card__container {
        grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    }
}

@media (max-width: 600px) {
    .card__container {
        grid-template-columns: 1fr; /* 1 card per row */
    }
}



/* Section Styling */
/*  Section Styling */
.brands-section {
    background: linear-gradient(135deg, #2c6e49, #56ab91);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* 🏆 Heading & Description */
.section-title {
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.brands-description {
    font-size: 18px;
    max-width: 700px;
    margin: auto;
    opacity: 0.9;
    margin-bottom: 50px;
}

/* 🔥 Brands Container */
.brands-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* 🏅 Brand Cards */
.brand-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease-in-out, background 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 250px;
}

.brand-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
}

/* 🎯 Icons */
.icon img {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
}

.brand-card:hover .icon img {
    transform: rotateY(360deg);
}

/* 🏆 Titles & Paragraph */
h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.brand-card p {
    font-size: 16px;
    opacity: 0.85;
}
.brand-card i{
    font-size: 40px;
    margin-bottom: 20px;
}

/* 📱 Responsive */
@media (max-width: 768px) {
    .brands-container {
        flex-direction: column;
        align-items: center;
    }
}




.timeline-section {
    text-align: center;
    padding: 60px 20px;
    background: #f0fdf4;
}

.timeline-section h2 {
    font-size: 32px;
    font-weight: bold;
    color: #2c6e49;
    margin-bottom: 40px;
}

/* Timeline Container */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

/* Zigzag Line */
.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #2c6e49;
    transform: translateX(-50%);
}

/* Timeline Items */
.timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-item {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    width: 100%;
    margin-bottom: 40px;
    position: relative;
    column-gap: 140px;
}

/* Zigzag Connector Dots */
.timeline-item::before {
    content: "";
    position: absolute;
    left: 50%;
    top: calc(50% - 9px);
    width: 18px;
    height: 18px;
    background: #2c6e49;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* Alternate Content Placement */
.timeline-item.right {
    flex-direction: row-reverse;
}

/* Icon Circle */
.timeline-icon {
    width: 170px;
    height: 170px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    z-index: 3;
}

.timeline-icon img {
    width: 100px; /* Set a fixed width */
    height: 100px; /* Set a fixed height */
    border-radius: 50%;
    object-fit: cover;
}

/* Content Box */
.timeline-content {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    width: 45%;
    text-align: left;
    position: relative;
    z-index: 3;
}

.timeline-item.right .timeline-content {
    text-align: right;
}

/* Heading and Paragraph */
.timeline-content h3 {
    font-size: 20px;
    color: #2c6e49;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 16px;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline {
        display: block;
    }
    .timeline-item {
        flex-direction: column !important;
        text-align: left;
        padding-left: 40px;
    }
    .timeline-item.right {
        flex-direction: column !important;
        text-align: left;
    }
    .timeline-icon {
        margin-bottom: 15px;
        margin-left: 0;
    }
    .timeline-content {
        width: 90%;
        text-align: left;
        margin: 0 auto;
    }
}

.custom-section { 
    text-align: center;
    padding: 60px 20px;
    color: #000;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    background: #f0f0f0;
}

.custom-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 30px;
    flex-wrap: wrap;
}

.custom-header h2 {
    font-size: 40px;
    font-weight: 700;
    flex: 1;
    text-align: center;
}


.cta-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    background: #4CAF50;
    color: #fff;
    transform: scale(1.05);
}


.custom-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}


.custom-item {
    position: relative;
    background: #fff;
    color: #000;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.custom-item i{
    font-size: 40px;
}

.custom-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.custom-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.05));
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 80%);
    z-index: -1;
    transition: all 0.5s ease;
}

.custom-item:hover .custom-shape {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
}

.custom-item img {
    width: 65px;
    height: 65px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.custom-item h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.custom-item p {
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}


@media (max-width: 768px) {
    .custom-header {
        flex-direction: column;
        text-align: center;
    }
    
    .custom-header h2 {
        margin-bottom: 15px;
    }

    .cta-btn {
        width: 100%;
        max-width: 220px;
    }

    .custom-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .custom-header h2 {
        font-size: 1.6rem;
    }

    .custom-container {
        grid-template-columns: 1fr;
    }
}


/* 🌟 Premium Before-After Section */
.premium-before-after {
    padding: 80px 5%;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 🌟 Layout */
.premium-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 50px;
}

/* 🌟 Left Side Content */
.premium-content {
    /* background: #f8f9fa; Light gray background */
    color: #333; /* Dark text for readability */
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    margin: auto;
    /* border: 1px solid #ddd; */
}
.premium-content ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0;
    text-align: left;
    margin-bottom: 20px;
}

.premium-content ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.premium-content ul li i {
    color: #28a745; /* Green color for tick icons */
    margin-right: 10px;
    font-size: 18px;
}


.premium-content h1 {
    font-size: 24px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
    color: #ff9800; /* Highlighting heading */
}

.premium-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.premium-btn {
    display: inline-block;
    background: #ff9800;
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
    border: none;
}

.premium-btn:hover {
    background: #e68900;
}


/* 🌟 Right Side Before-After Box */
.premium-comparison-box {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
}

/* 🌟 Images */
.premium-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.premium-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* 🌟 Before-After Effect */
.premium-after {
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.3s ease-out;
}

/* 🌟 Middle Divider */
.premium-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    transform: translateX(-50%);
    transition: left 0.3s ease-out;
}

/* 🌟 Slider */
.premium-slider {
    position: absolute;
    width: 100%;
    top:10px;
    bottom: 15px;
    left: 2.5px;
    appearance: none;
    background: transparent;
    outline: none;
    /* height: 16px; */
    cursor: pointer;
}

/* 🌟 Glassy Slider Handle (No More Orange Dot) */
.premium-slider::-webkit-slider-thumb {
    appearance: none;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
    transition: 0.2s ease-out;
}
.premium-slider::-webkit-slider-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* 🌟 Responsive Design */
@media (max-width: 1024px) {
    .premium-container {
        flex-direction: column;
        text-align: center;
    }
    .premium-content {
        max-width: 90%;
    }
    .premium-comparison-box {
        max-width: 90%;
    }
}

@media (max-width: 600px) {
    .premium-content h2 {
        font-size: 28px;
    }
    .premium-content p {
        font-size: 16px;
    }
    .premium-btn {
        font-size: 14px;
    }
    .premium-slider {
        bottom: 10px;
    }
    .premium-slider::-webkit-slider-thumb {
        width: 30px;
        height: 30px;
    }
}


video {
    width: 100%;
}

.vid {
margin-top: 90px;
}


/* product page */

/* Product Container */
.product-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.product-intro {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.product-image-side {
    flex: 0 0 45%;
    max-width: 500px;
}

.product-image-side img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-about {
    flex: 1;
    padding: 20px;
}

.product-about h1 {
    font-size: 2em;
    color: #333;
    margin-bottom: 15px;
}

.product-about .price {
    font-size: 1.5em;
    color: #016117;
    margin-bottom: 20px;
}

.product-about p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.enquiry-btn {
    background: #016117;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 20px;
}

.enquiry-btn:hover {
    background: #1976d2;
}

/* Specifications Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

.specs-table tr {
    border-bottom: 1px solid #eee;
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table th,
.specs-table td {
    padding: 12px;
    text-align: left;
}

.specs-table th {
    width: 40%;
    color: #666;
    font-weight: 600;
    background-color: #f8f9fa;
}

.specs-table td {
    color: #333;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

/* Product Page Styles */

p
{
    line-height: 1.7rem;
}

.product-banner img {
    width: 100%;
    height: 100%;
   margin-top: 90px;
}

.product-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Key Features */
.key-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-box {
    background: linear-gradient(145deg, #ffffff, #f8f8f8);
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-box:nth-child(1) { animation-delay: 0.1s; }
.feature-box:nth-child(2) { animation-delay: 0.2s; }
.feature-box:nth-child(3) { animation-delay: 0.3s; }
.feature-box:nth-child(4) { animation-delay: 0.4s; }

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.feature-box h4 {
    color: #333;
    margin-bottom: 12px;
    font-size: 1.2em;
    position: relative;
    padding-bottom: 10px;
}

.feature-box h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #2196f3;
    transition: width 0.3s ease;
}

.feature-box:hover h4::after {
    width: 60px;
}

.feature-box p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
   
    
    .key-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
   
    .product-content {
        padding: 15px;
    }
    
    
    
    .product-intro {
        flex-direction: column;
        gap: 20px;
    }

    .product-image-side {
        flex: none;
        max-width: 100%;
    }

    .product-about {
        padding: 0;
    }

    .product-about h1 {
        font-size: 1.8em;
    }

    .enquiry-btn {
        width: 100%;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
   
    
    .key-features {
        grid-template-columns: 1fr;
    }
    
    .feature-box {
        padding: 20px 15px;
    }
    
    .product-about h1 {
        font-size: 1.5em;
    }

    .product-about .price {
        font-size: 1.3em;
    }
}


/* about */

/* Our Journey & Mission Section */
#journey-mission {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin: 40px auto;
}

.journey-box, .mission-box {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.journey-box h3, .mission-box h3 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 1.8em;
}

.journey-box p, .mission-box p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .explore-ahlawat-content, .deere-digitally-content, #journey-mission {
        flex-direction: column;
    }
}




