    /* RESET */
html,body {
    font-family: Arial, Helvetica, sans-serif;
}

/* GRID BACKGROUND */
body::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background: linear-gradient(#00f7ff22 1px, transparent 1px),
                linear-gradient(90deg, #00f7ff22 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
}

/* ===== CLEAN HEADER FIX ===== */

/* REMOVE DEFAULT SPACE */
body {
    margin: 0;
    padding: 0;
}

/* HEADER */
.main-header {
    text-align: center;
    padding: 5px 0;
}

/* LOGO */
.logo-container {
    margin: 0;
    padding: 0;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* IMAGE */
.logo-img {
    width: 80px;
    height: auto;
    display: block;
}

/* TEXT */
.company-name {
    margin: 5px 0 10px 0;
    font-size: 20px;
    text-align: center;
}

/* NAVBAR */
.navbar {

    display: flex;
    justify-content: center;
    gap: 20px;

    padding: 10px;

    background: #f5d6a5;

    margin-top: 20px;   /* 🔥 adds small gap */
}

.navbar a {
    text-decoration: none;
    font-weight: bold;
    color: #ff7a00;
}

/* ACTIVE */
.navbar a.active {
    background: orange;
    color: white;
    padding: 5px 10px;
    border-radius: 8px;
}

/* PANEL (CLEAN FIXED VERSION) */
/* CLEAN CORPORATE PANEL */
.panel {
    background: #f7f7f7; /* light background */
    border: 2px solid #ff7a00; /* orange border */
    border-radius: 12px;

    padding: 25px;
    margin: 25px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.08);

    transition: 0.3s;
}

.panel:hover {
    transform: translateY(-3px);
}

/* HEADINGS */
.panel h2 {
    text-align: center;
    color: #000;
    font-weight: bold;
}

/* TEXT */
.panel p {
    color: #222;
    line-height: 1.6;
    text-align: center;
}

/* ORANGE TITLE BUTTON (Vision/Mission style) */
.title-box {
    display: inline-block;
    background: #ff7a00;
    color: black;

    padding: 8px 18px;
    border-radius: 8px;

    font-weight: bold;
    margin: 10px auto;
}

/* ICON */
.icon {
    font-size: 40px;
    text-align: center;
    margin-bottom: 10px;
}

/* EQUIPMENT GRID */
.machine-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.machine {
    width: 180px;

    background: rgba(255,255,255,0.6);
    border-radius: 12px;

    border: 1px solid rgba(255,152,0,0.6);

    padding: 10px;
    text-align: center;

    transition: 0.3s;

    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.machine:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 0 15px #ff9800;
}

.machine img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

/* SLIDER */
.slider {
    overflow: hidden;
}

.slide-track {
    display: flex;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* DASHBOARD */
.dash-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.dash-card {
    background: rgba(255, 224, 178, 0.5);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #ff9800;
}

/* BARS */
.bar {
    background: #ddd;
    height: 20px;
    border-radius: 5px;
    margin-top: 10px;
}

.bar-fill {
    background: #ff9800;
    height: 100%;
    text-align: center;
    color: black;
}

/* CONTACT */
.contact-info p {
    font-size: 16px;
    margin: 10px 0;
    padding: 10px;

    background: rgba(255, 224, 178, 0.6);
    border-left: 5px solid #ff9800;
    border-radius: 8px;

    font-weight: bold;
}

/* CLIENT LIST */
.client-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.client-item {
    padding: 12px;
    background: rgba(255, 224, 178, 0.6);
    border-left: 6px solid #ff9800;
    border-radius: 8px;
    font-weight: bold;
}
/* 🍔 MENU BUTTON */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}
/* 📱 MOBILE FIX */
@media (max-width: 768px) {

    .logo-img {
        width: 70px;
    }

    .company-name {
        font-size: 18px;
    }

    .menu-toggle {
        display: block;
        padding: 10px;
    }

    .navbar {
        display: none;
        flex-direction: column;
        background: #111;
    }

    .navbar a {
        color: white;
        padding: 10px;
        border-bottom: 1px solid #333;
    }
}
/* ============================= */
/* 🔥 STATS PAGE MODERN DESIGN */
/* ============================= */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* CARD */
.stat-card {
    position: relative;

    background: rgba(255,255,255,0.7);
    border-radius: 12px;

    padding: 10px;
    text-align: center;

    border: 1px solid #ff9800;

    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: 0.3s;
}

/* IMAGE CONTROL (FIX BIG IMAGE ISSUE) */
.stat-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

/* COUNT BADGE (TOP OF IMAGE) */
.count {
    position: absolute;
    top: 8px;
    left: 8px;

    background: #ff9800;
    color: white;

    padding: 5px 10px;
    border-radius: 20px;

    font-size: 14px;
    font-weight: bold;

    box-shadow: 0 0 10px orange;
}

/* NAME BELOW IMAGE */
.stat-card p {
    margin-top: 10px;
    font-weight: bold;
    color: #003049;
}

/* HOVER EFFECT */
.stat-card:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 0 20px #ff9800;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-card img {
        height: 100px;
    }
}
/* CLIENT HOVER EFFECT */
.client-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

/* 🔥 HOVER HIGHLIGHT */
.client-item:hover {
    background: linear-gradient(135deg, #fff3cd, #ffe082);

    transform: translateX(10px) scale(1.02);

    border-left: 6px solid #ff6f00;

    box-shadow:
        0 5px 15px rgba(0,0,0,0.15),
        0 0 15px rgba(255,152,0,0.8);
}
/* CONTACT HOVER EFFECT */
.contact-info p {
    transition: all 0.3s ease;
    cursor: pointer;
}

/* 🔥 HOVER EFFECT */
.contact-info p:hover {
    background: linear-gradient(135deg, #fff3cd, #ffe082);

    transform: translateX(10px) scale(1.02);

    border-left: 6px solid #ff6f00;

    box-shadow:
        0 5px 15px rgba(0,0,0,0.15),
        0 0 15px rgba(255,152,0,0.8);
}
.contact-info p:hover {
    animation: glowPulse 1s infinite alternate;
}

@keyframes glowPulse {
    from {
        box-shadow: 0 0 10px orange;
    }
    to {
        box-shadow: 0 0 25px #ff9800;
    }
}
/* FOOTER CENTER ALIGN */
.footer {
    text-align: center;
    padding: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

/* CENTER ALL TEXT INSIDE FOOTER */
.footer p,
.footer h3,
.footer a {
    text-align: center;
}

/* QUICK LINKS CENTER */
.footer .quick-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

/* CONTACT CENTER */
.footer .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* COPYRIGHT CENTER */
.footer .copyright {
    margin-top: 15px;
    font-size: 14px;
}
.external-link {
    color: #0d47a1;
    font-weight: bold;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(255,255,255,0.6);
    transition: 0.3s;
}

.external-link:hover {
    background: #ff9800;
    color: white;
    box-shadow: 0 0 10px orange;
}
footer {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    font-size: 14px;
}

.home-description {
    display: block;
}
.footer {
    width: 100%;
    margin-top: 50px;
}

.footer-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    text-align: center;
    flex-wrap: wrap;
}

.footer-box {
    min-width: 200px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    font-weight: bold;
}
body {
    min-height: 100vh;
}
/* CENTER EVERYTHING LIKE IMAGE 1 */
.icon {
    text-align: center;
    font-size: 40px;
    margin-bottom: 10px;
}

/* CENTER BUTTON */
.center-title {
    display: block;
    margin: 10px auto;
    text-align: center;
    width: fit-content;
}

/* CENTER TEXT */
.center-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
/* LOGO LAYOUT */
/* 🔷 HEADER GRID BACKGROUND */
/* ================= HEADER FIX ================= */

/* USE SAME GRID AS BODY */
.logo-container {
    display: flex;
    flex-direction: column;   /* 🔥 KEY FIX */
    align-items: center;
    justify-content: center;

    padding: 10px 0;          /* small spacing */
}
.logo-link {
    text-decoration: none;
    color: inherit;

    display: flex;
    flex-direction: column;   /* 🔥 STACK LOGO + TEXT */
    align-items: center;
}
/* WRAPPER */
.logo-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 10px;
}

/* LOGO */
.logo-img {
    width: 70px;
    display: block;

    /* 🔥 GLOW */
    filter: drop-shadow(0 0 8px rgba(255, 152, 0, 0.7));
    transition: 0.3s;
}

/* HOVER GLOW */
.logo-wrapper:hover .logo-img {
    filter: drop-shadow(0 0 18px rgba(255, 152, 0, 1));
    transform: scale(1.05);
}

/* ✨ SHINE EFFECT */
.shine {
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.7),
        transparent
    );

    transform: skewX(-25deg);
}

/* 🎬 ANIMATION */
.logo-wrapper .shine {
    animation: shineMove 3s infinite;
}

@keyframes shineMove {
    100% {
        left: 125%;
    }
}

/* LOGO */
.logo-img {
    width: 70px;
    filter: drop-shadow(0 0 8px rgba(0, 200, 255, 0.6));
}

.company-name {
    margin: 0;
    font-size: 24px;
    text-align: center;
}

/* 🖼 LOGO IMAGE */
.logo-img {
    width: 320px;   /* reduced from 100px */
    height: auto;
}

/* 🧱 TEXT BLOCK */
.logo-text {
    display: flex;
    flex-direction: column;
}

/* 🟧 TITLE */
.logo-text h1 {
    margin: 0;
    font-size: 30px;
    color: #ff7a00;
}

/* 🧾 TAGLINE */
.tagline {
    margin: 0;
    font-size: 14px;
    color: #555;
}
/* ================= HEADER ================= */

/* HEADER */
.main-header {
    text-align: center;
    padding: 0;
    margin: 0;
}

/* LOGO IMAGE */
.logo-top {

    width: 220px;
    height: auto;

    display: block;

    margin: 0 auto -25px auto;   /* 🔥 pulls text upward */
}

/* COMPANY NAME */
.logo-text {

    font-size: 30px;
    font-weight: bold;

    color: #ff7a00;

    line-height: 1.2;

    margin: 0;
    padding: 0;
}

/* TAGLINE */
.tagline {

    font-size: 14px;
    color: #333;

    margin-top: 5px;
}

/* 📱 MOBILE */
@media(max-width:768px){

    .logo-top{
        width: 180px;

        margin: 0 auto -20px auto;
    }

    .logo-text{
        font-size: 22px;
    }

    .tagline{
        font-size: 12px;
    }

}
/* FOOTER HEADINGS */
.footer-box h2 {
    font-size: 24px;
}

.footer-box h3 {
    font-size: 20px;
}

/* FOOTER TEXT */
.footer-box p {
    font-size: 16px;   /* 🔥 increased from small */
    line-height: 1.6;
}

/* LINKS */
.footer-box a {
    font-size: 16px;
}

/* COPYRIGHT */
.footer-bottom p {
    font-size: 15px;
    font-weight: 500;
}
/* EQUIPMENT SAME AS CLIENTS */
/* FORCE APPLY STYLE */
.machine.equip-card {
    background: #e6d2b0 !important;
    border-radius: 10px;
    padding: 10px;
    margin: 10px;

    border-left: 6px solid #ff8c00;

    transition: all 0.3s ease;
    text-align: center;
}

.machine.equip-card:hover {
    background: linear-gradient(to right, #f5d28a, #e6b85c) !important;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}
/* ============================= */
/* 🔥 EQUIPMENT SAME AS CLIENTS */
/* ============================= */

.machine-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* CARD */
.machine.equip-card {
    width: 180px;

    background: #e6d2b0;
    border-radius: 10px;
    padding: 10px;
    margin: 10px;

    border-left: 6px solid #ff8c00;

    text-align: center;
    transition: all 0.3s ease;

    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* IMAGE */
.machine.equip-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;

    transition: 0.3s;
}

/* TEXT */
.machine.equip-card p {
    margin-top: 8px;
    font-weight: 600;
}

/* 🔥 HOVER EFFECT (LIKE CLIENTS) */
.machine.equip-card:hover {
    background: linear-gradient(135deg, #fff3cd, #ffe082);

    transform: translateY(-6px) scale(1.03);

    box-shadow:
        0 5px 15px rgba(0,0,0,0.15),
        0 0 15px rgba(255,152,0,0.8);
}

/* IMAGE ZOOM */
.machine.equip-card:hover img {
    transform: scale(1.05);
}
/* 📱 MOBILE NAV */
.menu-toggle {
    display: none;
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        text-align: right;
        padding: 10px;
        font-size: 24px;
        cursor: pointer;
    }

    .navbar {
        display: none;
        flex-direction: column;
        background: #111;
        width: 100%;
    }

    .navbar a {
        display: block;
        padding: 12px;
        border-bottom: 1px solid #333;
        text-align: center;
    }
}
/* 📱 FIX MOBILE PANEL ALIGNMENT */
@media (max-width: 768px) {

    .panel {
        width: 95%;
        margin: 10px auto;   /* center horizontally */
        padding: 10px;
        box-sizing: border-box;
    }

    /* Fix parent overflow issues */
    body, html {
        overflow-x: hidden;
    }

}
/* 🍔 BUTTON */
.menu-toggle {
    display: none;
    font-size: 26px;
    padding: 10px;
    cursor: pointer;
}

/* 🌑 OVERLAY */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 998;
}

/* 📱 SIDE MENU */
.side-menu {
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100%;
    background: #111;
    padding: 20px;
    transition: 0.3s;
    z-index: 999;
}

/* HEADER */
.menu-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    color: white;
}

/* LINKS */
.side-menu a {
    display: block;
    padding: 12px;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid #333;
}

.side-menu a:hover {
    background: orange;
    color: black;
}

/* 📱 MOBILE ONLY */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .navbar {
        display: none; /* hide old navbar */
    }
}
/* 🚀 REMOVE TOP EMPTY SPACE */
body {
    margin: 0;
    padding: 0;
}

/* HEADER FIX */
.main-header {
    margin: 0;
    padding-top: 5px;   /* reduce this if still more space */
}

/* LOGO FIX */
.logo-container {
    margin-top: 0;
    padding-top: 0;
}

/* IMAGE FIX */
.logo-img {
    display: block;
    margin: 0 auto;
}
@media (max-width: 768px) {

    .main-header {
        padding-top: 5px;
    }

    .logo-container {
        margin-top: 0;
        padding-top: 0;
    }

}
/* BUTTON */
.chat-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: orange;
    color: white;
    padding: 14px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
}

/* BOX */
.chat-box {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 280px;
    background: white;
    border-radius: 10px;
    display: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 9999;
}

.chat-header {
    background: orange;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
}

.chat-body {
    padding: 10px;
}

.chat-body input,
.chat-body textarea,
.chat-body select {
    width: 100%;
    margin: 5px 0;
    padding: 8px;
}

.chat-body button {
    width: 100%;
    padding: 10px;
    background: orange;
    color: white;
    border: none;
    cursor: pointer;
}
/* ✅ MOBILE CHAT FIX */
@media (max-width: 768px){

    .chat-box{

        position: fixed;

        bottom: 80px;
        right: 5%;

        width: 90%;
        max-width: 320px;

        z-index: 9999;

        display: none;   /* ❌ remove !important */
    }

    .chat-btn{

        bottom: 20px;
        right: 20px;

        z-index: 10000;
    }

}
.chat-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: orange;
    color: white;
    font-size: 22px;
    padding: 12px;
    border-radius: 50%;
    z-index: 9999;
}

.chat-box {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 320px;
    max-width: 90%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    display: none;
    z-index: 9999;
}

/* ✅ MOBILE FIX */
@media (max-width: 768px){
    .chat-box{
        width: 90%;
        right: 5%;
        bottom: 80px;
    }
}
/* 🔥 FINAL HEADER GAP FIX */

.main-header{
    padding: 0 !important;
    margin: 0 !important;
}

.logo-container{
    padding: 0 !important;
    margin: 0 !important;
}

.logo-link{
    padding: 0 !important;
    margin: 0 !important;
}

.logo-top,
.logo-img{

    width: 220px !important;

    display: block !important;

    margin-top: 0 !important;
    margin-bottom: -70px !important;
}

.logo-text,
.company-name{

    margin-top: 0 !important;
    padding-top: 0 !important;

    line-height: 1.1 !important;
}

h1{
    margin-top: 0 !important;
}
.youtube-link{
    display:inline-block;
    background:#ff0000;
    color:white;
    padding:10px 15px;
    border-radius:25px;
    text-decoration:none;
    font-weight:bold;
}

.youtube-link:hover{
    background:#cc0000;
}
