/* --- Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
    --main-color: #fda21a;
    --secondary-color: #4fb649;
    --dark-blue-color: #030028;
    --bg: #f0f0f0;
    --text: #1a1a1a;
    --muted: #6b6b6b;
    --accent: #f6b012;
    --card: #ffffff;
    --gap: 28px;
}

body {
    color: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.background-img {
    background-image: url("./images/background.jpg");
    background-size: cover;
    min-height: 95vh;
}

/* Whatsapp Button */

.whatsapp-btn{
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 10000;
}

.whatsapp-btn img{
    width: 70px;
    height: auto;
}

@media (max-width: 600px) {
    .whatsapp-btn img{
        width: 60px;
        height: auto;
    }
}

/* --- Header --- */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    width: 100%;
}

#navbar {
    background: transparent;
    position: fixed;
    top: 0;
    z-index: 1000;
    top: 35px;
}

#navbar.scrolled {
    background: var(--dark-blue-color);
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
    color: #fff;
}

.logo img {
    width: 200px;
    height: auto;
}

.logo span {
    color: #ffb400;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    font-weight: 600;
    color: #fff;
}

.btn-appointment {
    background: var(--main-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

/* --- Hero Section --- */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 200px 5% 100px 5%;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1 1 500px;
}

.hero-text h1 {
    font-size: 48px;
    text-transform: uppercase;
    border-left: 4px solid var(--secondary-color);
    padding-left: 15px;
}

.hero-text h1 span.yellow {
    color: var(--main-color);
}

.hero-text p {
    font-size: 25px;
    margin: 40px 0;
    max-width: 80%;
}

.btns {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.btn-primary {
    background: var(--main-color);
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
}

.btn-play {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffb400;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #000;
}

.hero-img {
    flex: 1 1 170px;
    text-align: center;
}

.hero-img img {
    max-width: 100%;
    background-color: var(--dark-blue-color);
    /* padding: 20px 10px; */
    border-radius: 15px;
    border: 2px solid var(--main-color);
}

.machine-big-img {
    position: relative;
    width: 100%;
}

.machine-big-img img {
    width: 100%;
    background-color: rgb(119 119 119);
    border-radius: 10px;
    border: 2px solid var(--main-color);
}

.hidden-big-box {
    width: 100%;
    position: absolute;
    top: 1px;
    height: 170px;
    display: flex;
    align-items: center;
}

.hidden-inner-boxes-1 {
    width: 10%;
    height: 165px;
    /* border: 1px solid red; */
}

.hidden-inner-boxes-2 {
    width: 4%;
    height: 165px;
    /* border: 1px solid red; */
}

.hidden-inner-boxes-3 {
    width: 14%;
    height: 165px;
    /* border: 1px solid red; */
}

.hidden-inner-boxes-4 {
    width: 10.5%;
    height: 165px;
    /* border: 1px solid red; */
}

.hidden-inner-boxes-5 {
    width: 9%;
    height: 165px;
    /* border: 1px solid red; */
}

.hidden-inner-boxes-6 {
    width: 14.5%;
    height: 165px;
    /* border: 1px solid red; */
}

.hidden-inner-boxes-7 {
    width: 8.5%;
    height: 165px;
    /* border: 1px solid red; */
}

.hidden-inner-boxes-8 {
    width: 7%;
    height: 165px;
    /* border: 1px solid red; */
}

.hidden-inner-boxes-9 {
    width: 22.5%;
    height: 165px;
    /* border: 1px solid red; */
}

/* --- Stats --- */
.stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat {
    font-size: 22px;
    font-weight: bold;
}

.stats .stat-right-border {
    border-right: 1px solid #ff5a00;
    padding-right: 15px;
}

.stat span {
    color: #ffb400;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 36px;
        margin-bottom: 15px;
        border: none;
    }

    .hero-text p {
        margin: auto;
    }

    .stats {
        justify-content: center;
    }

    .btns {
        justify-content: center;
    }

    .hero-img {
        flex: 1 1 auto;
        text-align: center;
    }
}

@media (max-width: 756px) {
    .stats {
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 28px;
    }
}

/* ===== Machinery Section Styling ===== */
.machinery-services {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    font-family: Arial, sans-serif;
}

.machinery-services-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.green-h-services {
    color: var(--main-color) !important;
    font-size: 22px;
}

.machinery-services-header h2 {
    font-size: 2.1rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.3;
    color: var(--dark-blue-color);
}

.machinery-services-header h2 span {
    color: var(--main-color);
    /* yellow highlight */
}

.machinery-services-header p {
    max-width: 500px;
    font-size: 0.95rem;
    color: #222222;
    line-height: 1.6;
    text-align: justify;
}

.machinery-services-header a {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

.machinery-services-header a:hover {
    color: #f7b500;
}

/* ===== Service Cards Grid ===== */
.machinery-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.machinery-services-card {
    background: #f7f7f7;
    padding: 25px;
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.machinery-services-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.machinery-services-icon {
    background: var(--main-color);
    display: flex;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    align-items: center;
    justify-content: center;
    width: 16%;
}

.machinery-services-icon img {
    width: 32px;
    height: 32px;
}

.machinery-services-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: var(--dark-blue-color);
}

.backside-blue {
    background-color: var(--dark-blue-color);
}

.machinery-services-card p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 20px;
}

.machinery-services-card a {
    font-size: 0.9rem;
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

.machinery-services-card a:hover {
    color: #f7b500;
}

/* Special highlighted card */
.machinery-services-card.highlight {
    background: var(--main-color);
    color: #fff;
}

.machinery-services-card.highlight h3,
.machinery-services-card.highlight p,
.machinery-services-card.highlight a {
    color: #fff;
}

/* ABOUT XTRUDERLINE SECTION */

/* Background with diagonal cut */
.about-Xtruderline-wrapper {
    padding: 80px 5%;
}

.about-Xtruderline-section {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

/* Left side with image and card */
.about-Xtruderline-left {
    flex: 1 1 400px;
    position: relative;
}

.about-Xtruderline-image {
    width: 100%;
    background: var(--dark-blue-color);
    /* padding: 20px; */
    position: relative;
    z-index: 1;
    margin: auto;
    border-radius: 5px;
    border: 2px solid var(--main-color);
}

.about-Xtruderline-image img {
    width: 70%;
    height: auto;
    display: block;
}

/* Right side content */
.about-Xtruderline-right {
    flex: 1 1 400px;
}

.about-Xtruderline-heading {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #0a1027;
}

.about-Xtruderline-heading span {
    color: var(--main-color);
}

.green-about-txt {
    color: var(--main-color) !important;
    font-size: 24px;
    line-height: 3;
}

.about-Xtruderline-text {
    font-size: 15px;
    margin-bottom: 20px;
    color: #000000;
}

.about-Xtruderline-h3 {
    color: black;
    margin-bottom: 15px;
}

.about-Xtruderline-ul {
    color: black;
    margin-bottom: 15px;
}

.about-Xtruderline-btn {
    display: inline-block;
    background: var(--main-color);
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 992px) {
    .about-Xtruderline-section {
        flex-direction: column;
        text-align: center;
    }

    .about-Xtruderline-right {
        text-align: center;
    }
}

/* Leader Legacy Section */

.leader-legacy-section {
    display: grid;
    grid-template-columns: 1.05fr 1.05fr;
    align-items: stretch;
}

/* Left hero area (image + badge) */
.leader-legacy-section__left {
    position: relative;
    padding: 40px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

/* The yellow badge overlapping the image area */
.leader-legacy-badge {
    position: absolute;
    top: 28px;
    left: 40px;
    width: 260px;
    height: 150px;
    background: var(--accent);
    color: #111;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .08);
    padding: 12px;
    text-align: center;
}

.leader-legacy-badge .badge-big {
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .5px;
    margin: 0;
}

.leader-legacy-badge .badge-small {
    font-size: 16px;
    font-weight: 700;
    margin-top: 6px;
}

/* The person image (can be replaced) */
.leader-legacy-section__image {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

/* Right content area */
.leader-legacy-section__right {
    padding: 60px 10px 60px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

/* Main big heading with emphasis color on "Engineers" */
.lead-title {
    font-size: 46px;
    line-height: 1.04;
    font-weight: 800;
    color: #1a1a1a;
    margin: 8px 0 15px;
}

.lead-title .em {
    color: var(--accent);
}

.lead-title-2 {
    font-size: 34px;
    line-height: 1.04;
    font-weight: 800;
    color: #1a1a1a;
    margin: 8px 0 15px;
}

.lead-title-2 .em {
    color: var(--accent);
}

.lead-para {
    color: #1a1a1a;
    margin-bottom: 10px;
}

/* Benefits list (vertical) with icon circles */
.benefits {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
    width: 100%;
}

.benefit-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 22px;
    align-items: start;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgb(239, 239, 239);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 28px;
    flex-shrink: 0;
}

.benefit-icon img {
    width: 35px;
    height: 35px;
}

.benefit-content h4 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 800;
    color: black;
}

.benefit-content p {
    margin: 0;
    color: #6b6b6b;
    line-height: 1.6;
    font-size: 16px;
}

/* Responsive tweaks */
@media (max-width: 1100px) {
    .leader-legacy-section {
        grid-template-columns: 1.1fr 1fr;
    }

    .lead-title {
        font-size: 56px;
    }
}

@media (max-width: 900px) {
    .leader-legacy-section {
        grid-template-columns: 1fr;
    }

    .leader-legacy-section__left {
        order: 1;
        padding: 20px 20px;
    }

    .leader-legacy-section__right {
        order: 2;
        padding: 40px 28px;
    }

    .leader-legacy-badge {
        left: 20px;
        top: 12px;
        width: 220px;
        height: 130px;
        border-radius: 16px;
    }

    .leader-legacy-section__image {
        width: 90%;
        max-width: 420px;
        margin: 0 auto;
        display: block;
        border-radius: 12px;
    }

    .lead-title {
        font-size: 44px;
    }
}

@media (max-width: 480px) {
    .lead-title {
        font-size: 40px;
    }

    .benefit-item {
        grid-template-columns: 46px 1fr;
    }

    .benefit-icon {
        width: 46px;
        height: 46px;
    }
}

/* Milestone Achievement Section */

.milestone-section {
    width: 100%;
    padding: 70px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: black;
    background: var(--dark-blue-color);
}

.milestone-section h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.2;
}

.milestone-section h2 span {
    color: var(--main-color);
}

.milestone-section h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.2;
    margin-top: 20px;
}

.milestone-section p {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.2;
    max-width: 1200px;
    text-align: center;
}

.milestone-section button {
    background: var(--main-color);
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.molecular-img{
    max-width: 400px;
    border-radius: 10px;
    border: 1px solid var(--main-color);
}

/* PRICE RANGE SECTION */

.price-range-section {
    text-align: center;
    padding: 60px 5%;
    background: var(--dark-blue-color);
    /* clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 100%); */
}

.price-range-heading {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #ffffff;
    line-height: 1.2;
}

.price-range-heading span {
    color: var(--main-color);
}

.price-range-subtext {
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #373737;
    font-size: 15px;
}

.price-range-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.price-range-card {
    background: #f8f8f8;
    flex: 1 1 300px;
    max-width: 350px;
    border-radius: 10px;
    padding: 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-range-rating {
    font-size: 14px;
    color: var(--main-color);
    margin-bottom: 10px;
    text-align: left;
}

.price-range-price {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: left;
    color: #0b0842;
}

.price-range-price span {
    font-weight: normal;
    font-size: 14px;
    color: #555;
}

.price-range-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
    color: var(--dark-blue-color);
}

.price-range-list {
    color: var(--dark-blue-color);
    list-style: none;
    margin-bottom: 20px;
}

.price-range-list li {
    text-align: left;
    font-size: 14px;
    margin-bottom: 5px;
}

.price-range-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    text-align: left;
}

.price-range-btn {
    display: inline-block;
    background: #fcbf1e;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 14px;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
}

.price-range-btn::after {
    content: "➝";
    margin-left: 8px;
    font-weight: bold;
}

.price-range-img {
    width: 100%;
    height: auto;
    display: block;
    margin: auto;
}

.price-range-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-bottom: 50px solid #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .price-range-container {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .price-range-heading {
        font-size: 24px;
    }

    .price-range-card {
        max-width: 100%;
    }
}

/* TESTIMONIALS SECTION */

.new-machinery-section {
    text-align: center;
    padding: 60px 20px;
    background: white;
}

.new-machinery-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    color: black;
}

.new-machinery-section h2 span {
    color: var(--main-color);
}

.underline {
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    margin: 10px auto 20px;
}

.new-machinery-section h3 {
    color: var(--main-color);
    font-size: 24px;
}

.new-machinery-section p {
    font-size: 14px;
    text-align: justify;
    max-width: 1200px;
    margin: auto;
    margin-bottom: 25px;
    color: black;
}

.new-machinery-section-content-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    background-color: var(--dark-blue-color);
    color: black;
    border-radius: 10px;
}

.new-machinery-inner-box {
    width: 50%;
    padding: 20px;
    align-self: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.new-machinery-inner-box img {
    max-width: 80%;
    max-height: 400px;
    background-color: var(--dark-blue-color);
    border-radius: 15px;
    border: 5px solid var(--main-color);
}

.img-flip{
    -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.new-machinery-inner-box h2 {
    text-align: left;
    font-size: 32px;
    width: 90%;
    color: white;
}

.new-machinery-inner-box p {
    text-align: justify;
    font-size: 16px;
    margin-bottom: 15px;
    width: 90%;
    color: white;
}

@media (max-width: 600px) {
    .new-machinery-section h2 {
        font-size: 24px;
    }
}

/* PROCESS SECTION */

.process-big-box {
    width: 100%;
    clip-path: polygon(0px 0px, 100% 5%, 100% 100%, 0px 100%);
    background: var(--dark-blue-color);
}

.process-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    align-items: center;
}

/* Left side image box */
.process-left {
    position: relative;
    background: url("/images/wallpaper-img.png") center/cover no-repeat;
    min-height: 500px;
    clip-path: polygon(8% 0, 100% 0, 100% 90%, 92% 100%, 0 100%, 0 8%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: #ffffff;
}

.process-left h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    color: white;
}

.process-left p {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: white;
}

.process-left .btn {
    display: inline-block;
    background: var(--main-color);
    color: #fff;
    padding: 12px 24px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 2px;
    font-size: 14px;
}

/* Right side */
.process-right h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    margin-top: 20px;
    line-height: 1.4;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.process-right h2 span {
    color: var(--main-color);
}

.process-right h2 img {
    width: 65px;
    background-color: rgb(148, 148, 148);
    border-radius: 5px;
}

.process-right h2 .eye-img {
    width: 65px;
    padding: 10px 0px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: var(--main-color);
    color: #fff;
    padding: 20px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 0 100%);
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-new {
    background: var(--main-color);
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 50px;
    border-radius: 10px;
}

.card-new p {
    color: var(--dark-blue-color);
}

.card.dark {
    background: var(--main-color);
    color: #fff;
}

.card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-blue-color);
}

.card p {
    font-size: 14px;
    line-height: 1.6;
    flex-grow: 1;
    color: var(--dark-blue-color);
}

.card span {
    font-size: 22px;
    font-weight: 800;
    align-self: flex-end;
}

@media (max-width: 900px) {
    .process-section {
        grid-template-columns: 1fr;
    }

    .process-left {
        min-height: 400px;
        max-width: 500px;
        margin: auto;
    }

    .process-right h2 {
        font-size: 22px;
        margin-top: 20px;
    }
}

/* FOOTER SECTION */

.footer-section {
    position: relative;
    background: var(--dark-blue-color);
    overflow: hidden;
}

/* Angled dark overlays */
.footer-section::before,
.footer-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background: var(--dark-blue-color);
    z-index: 0;
}

.footer-section::before {
    left: -5%;
    transform: skewX(-20deg);
}

.footer-section::after {
    right: -5%;
    transform: skewX(20deg);
}

.footer-section-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    align-items: stretch;
}

/* Left content */
.footer-section-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-section-logo p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
    margin: 15px 0;
}

.footer-section-logo img {
    max-width: 180px;
}

.footer-section-social {
    margin-top: 15px;
}

.footer-section-social a {
    margin-right: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 22px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}

.footer-section ul li a:hover {
    color: #f97316;
}

/* Right orange box */
.footer-section-right {
    background: var(--main-color);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    border-radius: 5px;
}

.footer-section-right a {
    width: 100%;
    text-decoration: none;
}

.footer-section-right h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
}

.footer-section-right input {
    width: 100%;
    padding: 12px 10px;
    border: none;
    border-bottom: 1px solid #fff;
    margin-bottom: 20px;
    font-size: 15px;
    background: transparent;
    color: #fff;
}

.footer-section-right input::placeholder {
    color: #f1f1f1;
}

.footer-section-right button {
    width: 100%;
    background: black;
    color: #fff;
    border: none;
    padding: 15px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
    border-radius: 5px;
}

.footer-section-right button:hover {
    background: #000;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-section-container {
        grid-template-columns: 1fr;
    }

    .footer-section-left {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-section-left {
        grid-template-columns: 1fr;
    }

    .footer-section-right {
        padding: 30px 20px;
    }
}

/* RESPONSIVE CODE */

@media (max-width: 1066px) {
    header {
        padding: 10px 5%;
    }

    .logo img {
        width: 170px;
        height: auto;
    }

    .btn-appointment {
        padding: 5px 10px;
    }
}

@media (max-width: 995px) {
    header {
        padding: 20px 5%;
    }

    nav ul {
        display: none;
    }

    .btn-appointment {
        display: none;
    }

    .logo img {
        width: 180px;
        height: auto;
    }
}

@media (max-width: 975px) {
    .hero-text {
        flex: 1 1 280px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 22px;
    }

    .background-img {
        min-height: 50vh;
    }

    .hero {
        padding: 150px 5% 100px 5%;
    }

    .about-Xtruderline-wrapper {
        padding: 40px 5%;
    }

    .about-Xtruderline-right {
        flex: 1 1 300px;
    }

    .about-Xtruderline-image {
        width: 100%;
    }

    .about-Xtruderline-image img {
        width: 90%;
    }

    .lead-title {
        font-size: 36px;
    }
    .new-machinery-inner-box img{
        width: 100%;
    }

}

@media (max-width: 900px) {
    .process-left {
        width: 100%;
        max-width: 300px;
    }

    .milestone-section h3{
        text-align: center;
    }
}

@media (max-width: 425px) {
    .hero {
        padding: 210px 5% 60px 5%;
    }

    .hero-text {
        flex: 1 1 270px;
    }

    .hero-text h1 {
        max-width: 100%;
        border: none;
        font-size: 24px;
    }

    .hero-text p {
        max-width: 100%;
        margin: 20px 0;
        font-size: 16px;
        text-align: justify;
    }

    .machine-big-img {
        display: none;
    }

    .btns {
        justify-content: center;
    }

    .stats .stat-right-border {
        border-right: none;
        padding-right: 0px;
        border-bottom: 1px solid #ff5a00;
        padding-bottom: 15px;
    }

    .stats {
        gap: 10px;
        margin-bottom: 30px;
    }

    .stat {
        font-size: 20px;
    }

    .hero-img {
        flex: 1 1 auto;
    }

    /* MACHINERY SECTION */
    .machinery-services {
        padding: 25px 15px;
    }

    .machinery-services-header h2 {
        text-align: center;
        font-size: 1.7rem;
        margin-bottom: 15px;
    }

    .machinery-services-header p {
        text-align: justify;
    }

    .machinery-services-header {
        margin-bottom: 20px;
    }

    .machinery-services-card {
        padding: 15px;
    }

    .machinery-services-card p {
        margin-bottom: 10px;
        text-align: justify;
    }

    .molecular-img{
        max-width: 299px;
    }

    /* ABOUT XTRUDERLINE SECTION */
    .about-Xtruderline-left {
        flex: 1 1 auto;
    }

    .about-Xtruderline-wrapper {
        clip-path: none;
        padding: 30px 5%;
    }

    .green-about-txt {
        line-height: 1.5;
    }

    .about-Xtruderline-heading {
        font-size: 28px;
    }

    .about-Xtruderline-text {
        font-size: 16px;
        text-align: justify;
        margin-bottom: 10px;
    }

    .about-Xtruderline-section {
        gap: 20px;
    }

    .leader-legacy-section__image {
        width: 100%;
    }

    .leader-legacy-section__right {
        padding: 5px 20px 20px 20px;
    }

    .lead-title {
        margin: 0px 0px 20px 0px;
        font-size: 30px;
    }

    .lead-title-2 {
        font-size: 30px;
    }

    .about-Xtruderline-image img {
        width: 90%;
    }

    /* MILESTONE SECTION */

    .milestone-section {
        padding: 40px 20px;
    }

    .milestone-section h2 {
        text-align: center;
        font-size: 30px;
    }

    .milestone-section p {
        font-size: 14px;
    }

    .milestone-section h3 {
        text-align: center;
        font-size: 21px;
    }

    /* NEW MACHINERY SECTION */

    .new-machinery-section {
        padding: 40px 20px;
    }

    .new-machinery-section h3 {
        font-size: 18px;
    }

    .new-machinery-section h2 {
        font-size: 28px;
    }

    .new-machinery-section-content-box {
        flex-direction: column;
        margin-bottom: 25px;
    }

    .new-machinery-inner-box {
        width: 100%;
        padding: 25px 0px 15px 0px;
    }

    .new-machinery-inner-box img {
        width: 100%;
        border: 2px solid var(--main-color);
        border-radius: 10px;
    }

    .order-1 {
        order: 1;
    }

    .new-machinery-inner-box p {
        font-size: 14px;
    }

    /* PROCESS SECTION */

    .process-big-box {
        clip-path: none;
    }

    .process-section {
        padding: 40px 20px;
    }

    .process-left {
        width: 100%;
    }

    .card-new {
        padding: 10px;
    }

    .card-new p {
        font-size: 15px;
    }

    /* PRICE RANGE SECTION */
    .price-range-section {
        padding: 40px 5%;
    }

    .price-range-subtext {
        margin: 0 auto 20px auto;
        text-align: justify;
    }

    .green-h-services {
        font-size: 18px;
        margin-bottom: 15px;
    }

    /* TESTIMONIAL SECTION */
    .testimonials-section {
        padding: 40px 20px;
    }

    .stars {
        margin-bottom: 10px;
    }

    .testimonial-card p {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .process-left h3 {
        font-size: 22px;
    }

    .process-section {
        gap: 20px;
    }

    .process-right h2 {
        text-align: center;
    }
}

/* Sidebar */

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    z-index: 10000000;
}

.sidenav a {
    padding: 8px 8px 8px 22px;
    text-decoration: none;
    font-size: 20px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 36px;
    margin-left: 50px;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

.sidebar-logo-img {
    width: 150px;
    margin-top: 10px;
}

.sidebar-open {
    display: none !important;
    color: white;
    font-size: 25px;
    cursor: pointer;
}

@media (max-width:900px) {
    .sidebar-open {
        display: block !important;
    }
}

.sidebar-nav {
    color: white;
    font-size: 25px;
    display: none !important;
    cursor: pointer;
}

@media (max-width:995px) {
    .sidebar-nav {
        display: block !important;
    }
}

/* Top Bar Section */

.top-bar-section {
    width: 100%;
    background-color: #2C2C2C;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 70px;
    position: fixed;
    top: 0px;
    z-index: 10000;
}

.top-bar-section a {
    color: white;
    height: auto;
    text-decoration: none;
}

.top-bar-social-icons a {
    height: 20px;
}

.top-bar-content-section {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar-content-section p {
    font-size: 16px;
    /* font-weight: 600; */
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-social-icons i {
    font-size: 20px;
}

@media (max-width: 769px) {

    /* Top Section */
    .top-bar-section {
        flex-direction: column;
        padding: 5px 10px;
        gap: 10px;
    }

    .top-bar-content-section {
        flex-direction: column;
        gap: 2px;
    }

    #navbar{
        top: 93px;
    }
}