html {
    scroll-behavior: smooth;
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: 'Poppins', sans-serif;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 1000;
    padding: 10px 40px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);

}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-container {
    max-width: 1200px;
    margin: auto;

}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    font-size: 16px;
}

.nav-links a {
    margin: 0 15px;
    color: black;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;

}

.contact-button {
    background: #f26522;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;

}

.contact-button:hover {
    background: #d95414;
}


.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}


@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 20px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        border-radius: 0 0 12px 12px;
        margin-top: -2px;
        /* align-items: center; */
       
    }

    .nav-links.show {
        display: flex;

    }

    .nav-links a {
        margin: 10px 0;
        font-size: 12px;
        font-style:bold ;
        margin-left: 20px;
      
    }


}




/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    /* Dark tint */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    color: #ddd;
    font-size: 1rem;
    margin-bottom: 30px;
    max-width: 700px;

}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;

}

.btn {
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
}

.orange-btn {
    background: #f26522;
    color: white;
}

.orange-btn:hover {
    background: #d95414;
}

.gray-btn {
    background: #999;
    color: white;
}

.gray-btn:hover {
    background: #777;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .orange-btn {
        width: 250px;
    }

    .gray-btn {
        width: 250px;
    }
}


/* mech */


#mechanical-focus {
    padding: 100px 20px 60px;
    background-color: #fff;
    text-align: center;
    /* min-height: 100vh; */
}

.mechanical-focus-container {
    max-width: 1140px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #111;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    /* margin-bottom: 60px; */
}

.focus-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.focus-card {
    background-color: #fff;
    width: 350px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.focus-card:hover {
    transform: translateY(-5px);
}

.focus-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.focus-text {
    font-size: 1rem;
    font-weight: 500;
    color: #111;
    line-height: 1.6;
}


@media (max-width: 992px) {
    .focus-grid {
        gap: 30px;
    }

    .focus-card {
        width: 45%;
    }
}

@media (max-width: 600px) {
    .focus-card {
        width: 90%;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}


/* service */
#services {
    position: relative;
    padding: 100px 20px;
    background: url('assets/images/background-blur.jpg') center center/cover no-repeat;
    background-size: cover;
    overflow: hidden;
    text-align: center;
}

#services::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.services-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card img {
    width: 220px;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    line-height: 1.5;
}


@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 90%;
    }

    .service-card img {
        width: 100%;
        max-width: 320px;
    }
}

/* ===== Manufacturing Capabilities ===== */
#manufacturing {
    padding: 100px 20px 60px;
    background-color: #fff;
}

.manufacturing-container {
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
}

.manufacturing-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    gap: 40px;
    flex-wrap: wrap;
    text-align: left;
}

.capability-list {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 1rem;
    color: #222;
    flex: 1 1 45%;
}

.capability-list li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.capability-image {
    width: 100%;
    max-width: 480px;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}



/* ===== Tools & Platforms ===== */
#tools-platforms {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.tools-container {
    max-width: 1140px;
    margin: 0 auto;
}

.tools-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.tool-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    padding: 30px;
    width: 280px;
    text-align: center;
    transition: transform 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
}

.tool-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
    margin-bottom: 15px;
}

.tool-logos img {
    height: 40px;
    max-width: 60px;
    object-fit: contain;
    filter: grayscale(0%);
}

.tool-card p {
    font-size: 1rem;
    font-weight: 700;
    color: #222;
}


@media (max-width: 768px) {
    .tool-card {
        width: 90%;
    }
}



/* ===== Why India Section ===== */
#why-india {
    padding: 100px 20px 80px;
    background: #fff;
    text-align: center;
}

#why-india .section-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 10px;
}

#why-india .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 50px;
}

.why-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: left;

}

.why-text {
    flex: 1 1 480px;
}

/* .why-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-list li {
    background: #fcf7f7;
    border: 1px solid #eee;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: #222;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
} */

.why-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* center-align the boxes */
    gap: 12px;
    /* reduce spacing between boxes */
}

.why-list li {
    background: #fcf7f7;
    border: 1px solid #eee;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: #222;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);

    /* NEW: fixed consistent width */
    width: 100%;
    max-width: 480px;
    /* keeps them the same width */
    text-align: center;
}

.why-image {
    flex: 1 1 400px;
    text-align: center;
}

/* .why-image img {
    max-width: 100%;
    max-width: 400px;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
} */

.why-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

@media (max-width: 768px) {
    .why-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        /* reduce the gap between text and image */
    }

    .why-text {
        text-align: center;
        margin-bottom: 10px;
        /* smaller space below list */
    }

    .why-image {
        margin-top: -150px;
    }

    .why-image img {
        margin-top: 0;
    }
}

/* ===== Our Clients Build Section ===== */
#clients-build {
    padding: 100px 20px 80px;
    background-color: #fff;
    text-align: center;
}

.clients-container {
    max-width: 1140px;
    margin: 0 auto;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.client-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
}

.client-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.client-card p {
    font-weight: 600;
    font-size: 1rem;
    padding: 15px 10px 20px;
    color: #111;
}

/* ===== Case Studies Section ===== */
#case-studies {
    padding: 100px 20px 80px;
    background-color: #fff;
    text-align: center;
}

.case-container {
    max-width: 960px;
    margin: 0 auto;
}

.case-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
    margin-top: 50px;
}

.case-images {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.case-block img {
    width: 180px;
    height: 180px;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    margin-bottom: 10px;
}

.case-block p {
    font-size: 0.95rem;
    color: #111;
}

.testimonial p {
    font-size: 1rem;
    color: #333;
    font-style: italic;
    margin-bottom: 12px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.client-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #000;
}


@media (max-width: 768px) {
    .case-images {
        flex-direction: column;
        align-items: center;
    }

    .case-block img {
        width: 100%;
        max-width: 240px;
    }

    .clients-container {
        margin-top: -50px;
    }
}


/* ===== Our Promise Section ===== */
#our-promise {
    background-color: #e7e7e7;
    padding: 100px 20px 80px;
    text-align: center;
}

.promise-container {
    max-width: 1140px;
    margin: 0 auto;
    min-height: 350px;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 50px;
    justify-content: center;
}

.promise-card {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    color: #111;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.promise-card:hover {
    transform: translateY(-5px);
}

/* ===== Responsive Layout for Promise Section ===== */
@media (max-width: 1024px) {
    .promise-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .promise-grid {
        grid-template-columns: 1fr;
    }

    .promise-card {
        padding: 20px;
        font-size: 0.95rem;
    }
}


/* ===== Contact Form Section ===== */
#contact {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

#contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/contact-bg.jpg') center center/cover no-repeat;
    opacity: 0.2;
    z-index: 1;
    background-size: cover;
}

.contact-form-wrapper {
    max-width: 900px;
    background: white;
    margin: 0 auto;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    /* margin-bottom: 10px; */
    color: #000;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    /* margin-bottom: 50px; */
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    background: #f9f9f9;
}

.phone-field {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.phone-field span {
    padding: 12px 15px;
    border-right: 1px solid #ccc;
    font-size: 1rem;
    background: #f0f0f0;
}

.phone-field input {
    border: none;
    padding: 12px 15px;
    width: 100%;
    background: transparent;
}

textarea {
    resize: vertical;
    min-height: 80px;
}

.full-width {
    width: 100%;
}



.submit-button {
    margin: 30px auto 0;
    padding: 15px 30px;
    background: #f26522;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    width: 200px;
    display: block;
}

.submit-button:hover {
    background: #d95414;
}


@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    #contact {
        min-height: 100vh;
    }
}

/* ===== Map Section ===== */

/* ===== Map Section ===== */

#map-location {
    padding: 0;
    margin: 0;
    background-color: #fff;
}

.map-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.map-frame {
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.map-frame iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

@media (max-width: 768px) {
    .map-frame iframe {
        height: 320px;
    }
}

/* footer */

.footer {
    background: #000;
    color: #fff;
    padding: 60px 0px 0;
    font-family: 'Poppins', sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
}

/* .footer-column {
    flex: 1;
    min-width: 220px;
} */

.footer-column h4 {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-column p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 10px;
}

.footer-logos {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
}

.footer-logos img {
    height: 80px;
    object-fit: contain;
}

.footer-bottom {
    width: 100%;
    background: #fff;
    text-align: center;
    padding: 10px 0;
    margin: 0;
    box-sizing: border-box;
}

.footer-bottom p {
    color: #000;
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logos {
        justify-content: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-bottom {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }
}