body{
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
ul, li{
    list-style-type: none;

}
ul{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #4CAF50;
    padding: 10px 0;
}
li{
    margin: 0 20px;
}
a{
    color:white;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 20px;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header img {
    height: 80px;
    width: auto;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    background: none;
}

nav a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 8px;
    transition: 0.3s;
}

nav a:hover {
    background-color: #4CAF50;
    color: white;
}

table{
    width:100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

th, td{
    padding: 15px;
    text-align: center;
}

th{
    background: linear-gradient(135deg,#4CAF50,#2E7D32);
    color: white;
    font-size: 17px;
}

td{
    border-bottom: 1px solid #eee;
}

tr:hover{
    background: #f4fff5;
    transition: 0.3s;
}

ol li{
    list-style-type: disc;
    color: #444;
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact{
    text-align: center;
}

.About{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 80px 8%;
}

.About-left{
    flex: 1;
}

.About-left h1{
    color: #2E7D32;
    font-size: 42px;
    margin-bottom: 15px;
}

.About-left h3{
    color: #4CAF50;
    margin-bottom: 15px;
}

.About-left p{
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.About-right{
    flex: 1;
}

.About-right img{
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    border: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: 0.4s;
}

.About-right img:hover{
    transform: scale(1.03);
}

/* Mobile */

@media (max-width:768px){

    .About{
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 50px 20px;
    }

    .About-left{
        margin: 0;
    }

    .About-right{
        margin: 0;
    }

    .About-left h1{
        font-size: 32px;
    }
}
.hero {
    height: 100vh;
    background: linear-gradient(
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.55)
    ),
    url("https://plus.unsplash.com/premium_photo-1682144748274-add3d8ed04ea?q=80&w=1434&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");

    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    color: white;
    padding: 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    max-width: 900px;
}

.hero h3 {
    font-size: 1.4rem;
    font-weight: 400;
    max-width: 700px;
    margin-bottom: 30px;
}

.hero button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.hero button:hover {
    transform: translateY(-3px);
    background: #3f9443;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h3 {
        font-size: 1.1rem;
    }
} 

.Table{
    display: flex;
    justify-content: space-around;
}
.container{
    text-align: center;
}
.container h3{
    font-size: 30px;
}
.table{
    display:flex ;
    justify-content: space-around;
}
.Table-center{
    display: flex;
}
.picture{
    margin-top: 10px;
    border: 10px solid #4CAF50;
}
.Table-right{
    margin-top: 75px;
    border: 10px solid #4CAF50;
}
.second{
    margin-right: 50px;
}
.machine{
justify-content: center;
    display: flex;
    padding: 20px;
}
.machine div{
    margin: 100px;
   
}
.support-card {
    width: 400px;
    max-width: 90%;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    margin: 50px auto;
    text-align: center;
}

.support-card h2 {
    margin-bottom: 20px;
    color: #333;
}

.support-card form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.support-card input,
.support-card textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.support-card input:focus,
.support-card textarea:focus {
    border-color: #4a6cf7;
}

.support-card button {
    background: #4a6cf7;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.support-card button:hover {
    background: #3554d1;
}
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 50px;
}

.footer-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.footer-content p {
    color: #ccc;
    margin-bottom: 15px;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #00bfff;
}

.copyright {
    margin-top: 20px;
    font-size: 14px;
    color: #888;
}
.logo{
    display: flex;
    justify-content: center;
}
.logos{
    margin-left: 13px;
}

/* Machinery Page */

.machine {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 40px;
    flex-wrap: wrap;
}

.machine img {
    max-width: 100%;
    width: 500px;
    height: auto;
    border-radius: 15px;
}

.machine div {
    max-width: 600px;
    margin: 0;
}

.machine h1 {
    color: #4CAF50;
}

.machine p {
    line-height: 1.8;
    font-size: 18px;
}

/* Mobile Responsive */

@media (max-width: 768px) {

    header {
        flex-direction: column;
        align-items: center;
    }

    ul {
        flex-direction: column;
        gap: 10px;
    }

    .hero {
        height: auto;
        text-align: center;
        font-size: 20px;
        padding: 50px 20px;
    }

    .machine {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .machine img {
        width: 100%;
        max-width: 400px;
    }

    .About {
        flex-direction: column;
        text-align: center;
    }

    .Table,
    .table {
        flex-direction: column;
        align-items: center;
    }
}header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

header img {
    height: 80px;
    width: auto;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    background: none;
}


.contact-btn {
    background: #4CAF50;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #3d8b40;
    transform: translateY(-2px);
}
.about-section {
    padding: 80px 10%;
    background: #f8f9fa;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.about-tag {
    display: inline-block;
    color: #4CAF50;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.about-container h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #222;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.about-cards {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.card {
    background: white;
    width: 320px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

.card h3 {
    color: #4CAF50;
    margin-bottom: 15px;
}

.card p {
    color: #666;
    line-height: 1.6;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0 60px;
}

.features div {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    font-weight: 500;
}

.map-container {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
}

.contact-section{
    text-align:center;
    padding:80px 10%;
}

.contact-section h2{
    color:#4CAF50;
    font-size:40px;
}

.contact-section p{
    color:#555;
    font-size:18px;
}

.contact-info{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    margin:40px 0;
}

.info-card{
    background:white;
    width:250px;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.info-card h4{
    color:#4CAF50;
}

.support-card{
    margin-top:40px;
}
.picture,
.Table-right{
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    background: white;
}

.picture img,
.Table-right img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.picture:hover,
.Table-right:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.2);
}

.picture:hover img,
.Table-right:hover img{
    transform: scale(1.08);
}
.About{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    padding: 80px 8%;
    background: #f8fafc;
}

.About-left{
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.About-left:hover{
    transform: translateY(-5px);
}

.About-left h1{
    font-size: 42px;
    color: #2E7D32;
    margin-bottom: 15px;
}

.About-left h3{
    color: #4CAF50;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 24px;
}

.About-left p{
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 16px;
}

.About-left ol{
    margin-top: 15px;
    padding-left: 25px;
}

.About-left li{
    margin-bottom: 10px;
    color: #444;
    font-size: 16px;
    transition: 0.3s;
}

.About-left li:hover{
    color: #4CAF50;
    transform: translateX(5px);
}

.About-left ol li::marker{
    color: #4CAF50;
    font-weight: bold;
}

/* Mobile */

@media (max-width:768px){

    .About{
        flex-direction: column;
        padding: 50px 20px;
    }

    .About-left{
        width: 100%;
    }

    .About-left h1{
        font-size: 32px;
        text-align: center;
    }

    .About-left h3{
        font-size: 22px;
    }
}
.container{
    padding: 80px 8%;
    background: #f8fafc;
}

.container h3{
    text-align: center;
    font-size: 2.2rem;
    color: #2E7D32;
    margin-bottom: 40px;
    position: relative;
}

.container h3::after{
    content: "";
    width: 80px;
    height: 4px;
    background: #4CAF50;
    display: block;
    margin: 10px auto;
    border-radius: 20px;
}

.Table,
.table{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Table Card */

.Table-left,
.second{
    flex: 1;
    min-width: 350px;
}

table{
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

th{
    background: linear-gradient(135deg,#4CAF50,#2E7D32);
    color: white;
    padding: 18px;
    font-size: 17px;
}

td{
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
    transition: 0.3s;
}

tr:hover td{
    background: #f4fff5;
}

/* Image Card */

.Table-right,
.picture{
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: 0.4s;
}

.Table-right:hover,
.picture:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.2);
}

.Table-right img,
.picture img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.Table-right:hover img,
.picture:hover img{
    transform: scale(1.08);
}

.Table-right{
    width: 420px;
    height: 420px;
}

.picture{
    width: 320px;
    height: 320px;
}

/* Mobile */

@media (max-width:768px){

    .Table,
    .table{
        flex-direction: column;
    }

    .Table-right,
    .picture{
        width: 100%;
        height: auto;
    }

    .container h3{
        font-size: 1.8rem;
    }
}
.machine{
     transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.2);
   
}
.machine img{
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.machine img:hover{
    transform: scale(1.07);
    box-shadow:
        0 20px 40px rgba(0,0,0,0.2),
        0 0 25px rgba(76,175,80,0.5);
}
.contact-info{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.info-card{
    background: white;
    width: 250px;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}

.info-card h4{
    color: #4CAF50;
    margin-bottom: 15px;
    font-size: 22px;
}

.info-card p{
    color: #555;
    line-height: 1.6;
}

/* Hover Effect */

.info-card:hover{
    transform: translateY(-10px);
    box-shadow:
        0 20px 40px rgba(0,0,0,0.15),
        0 0 20px rgba(76,175,80,0.3);
}

.info-card:hover h4{
    color: #2E7D32;
}
.info-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,#4CAF50,#81C784);
    transform: scaleX(0);
    transition: 0.4s;
}

.info-card{
    position: relative;
    overflow: hidden;
}

.info-card:hover::before{
    transform: scaleX(1);
}
.features{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
    margin-top: 40px;
}

.features div{
    background: white;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    font-weight: 600;
    color: #333;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}

/* Hover Effect */

.features div:hover{
    transform: translateY(-10px);
    background: #4CAF50;
    color: white;
    box-shadow:
        0 20px 40px rgba(0,0,0,0.15),
        0 0 25px rgba(76,175,80,0.4);
}
.features div{
    position: relative;
    overflow: hidden;
}

.features div::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 4px;
    background: #4CAF50;
    transition: 0.4s;
}

.features div:hover::before{
    width: 100%;
}
table{
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}

/* Whole Table Hover */

table:hover{
    transform: translateY(-8px);
    box-shadow:
        0 20px 45px rgba(0,0,0,0.15),
        0 0 20px rgba(76,175,80,0.25);
}

th{
    background: linear-gradient(135deg,#4CAF50,#2E7D32);
    color: white;
    padding: 18px;
}

td{
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
    transition: 0.3s;
}

/* Row Hover */

tbody tr:hover{
    background: #f4fff5;
}

tbody tr:hover td{
    color: #2E7D32;
    font-weight: 600;
}
tbody tr{
    transition: 0.3s;
}

tbody tr:hover{
    transform: scale(1.01);
}
.map-container{
    max-width: 1200px;
    margin: 50px auto;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

/* Green accent line */
.map-container::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg,#4CAF50,#81C784);
    z-index: 10;
}

.map-container iframe{
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

/* Hover Effect */
.map-container:hover{
    transform: translateY(-10px);
    box-shadow:
        0 25px 50px rgba(0,0,0,0.2),
        0 0 25px rgba(76,175,80,0.3);
}

/* Heading */
h2{
    text-align: center;
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 30px;
}

h2::after{
    content: "";
    width: 80px;
    height: 4px;
    background: #4CAF50;
    display: block;
    margin: 10px auto;
    border-radius: 10px;
}

/* Mobile */
@media (max-width:768px){

    .map-container{
        margin: 30px 15px;
        border-radius: 15px;
    }

    .map-container iframe{
        height: 350px;
    }

    h2{
        font-size: 2rem;
    }
}
.support-card{
    max-width: 600px;
    margin: 80px auto;
    padding: 40px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
}

.support-card:hover{
    transform: translateY(-8px);
    box-shadow:
        0 25px 50px rgba(0,0,0,0.18),
        0 0 25px rgba(76,175,80,0.2);
}

.support-card h2{
    text-align: center;
    color: #2E7D32;
    margin-bottom: 30px;
    font-size: 2rem;
}

.support-card form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.support-card input,
.support-card textarea{
    width: 100%;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.support-card input:focus,
.support-card textarea:focus{
    border-color: #4CAF50;
    background: white;
    box-shadow: 0 0 12px rgba(76,175,80,0.2);
}

.support-card textarea{
    resize: none;
}

.support-card button{
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg,#4CAF50,#2E7D32);
    color: white;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.support-card button:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(76,175,80,0.35);
}

.support-card button:active{
    transform: scale(0.98);
}

/* Mobile */

@media (max-width:768px){

    .support-card{
        margin: 40px 20px;
        padding: 30px 20px;
    }

    .support-card h2{
        font-size: 1.7rem;
    }
}
.footer{
    background: linear-gradient(135deg,#111827,#1f2937);
    color: white;
    padding: 70px 20px 30px;
    text-align: center;
    margin-top: 80px;
}

.footer-content{
    max-width: 1200px;
    margin: auto;
}

.footer h3{
    font-size: 2rem;
    margin-bottom: 15px;
    color: #4CAF50;
}

.footer-content p{
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.7;
}

.footer-links{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.footer-links a{
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

.footer-links a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #4CAF50;
    transition: 0.3s;
}

.footer-links a:hover{
    color: #4CAF50;
}

.footer-links a:hover::after{
    width: 100%;
}

/* Social Icons */

.logo{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin: 35px 0;
}

.logo img{
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: all 0.4s ease;
    cursor: pointer;
}

.logo img:hover{
    transform: translateY(-8px) scale(1.15);
    filter: drop-shadow(0 0 12px rgba(76,175,80,0.6));
}

.logos{
    margin: 0;
}

/* Copyright */

.copyright{
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
    color: #94a3b8;
    font-size: 14px;
}

/* Mobile */

@media (max-width:768px){

    .footer{
        padding: 50px 15px 25px;
    }

    .footer h3{
        font-size: 1.7rem;
    }

    .footer-links{
        gap: 15px;
    }

    .logo{
        gap: 15px;
    }

    .logo img{
        width: 40px;
        height: 40px;
    }
}