* {
    box-sizing: border-box;
    overflow-x: hidden;
}
a{
    text-decoration: none;
    overflow: hidden;
}
i{
    overflow-y: hidden;
}
.hidovrflo{
    overflow: hidden;
}
.z99999{
    z-index: 99999;
}
body {
    /*font-family: 'Montserrat', sans-serif;*/
    font-family: "Trebuchet MS", sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* Disable horizontal scrolling */
    margin: 0;
    /* Remove default margin to prevent unintended scrolling */
    padding: 0;
    /* Ensure no padding adds unnecessary space */
}

.tab-bar {
    display: flex;
    position: fixed;
    /*flex-direction: column;*/
    align-items: center;
    background-color: #f5f5f5;
    color: #575757;
    padding: 0 20px;
    justify-content: space-between;
    height: 100px;
    width: 100vw;
    box-sizing: border-box;
    z-index: 99999;
    box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.3);
}

.tab-buttons {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}

.tab-button {
    padding: 10px 20px;
    cursor: pointer;
    background-color: #ddd;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.tab-button:hover {
    background-color: #bbb;
}

.tab-button.active {
    background-color: #4cae4c;
    color: #EF4D08;
}

i {
    overflow-y: hidden;
}

.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    top: 10px;
    right: 10px;
    /* Position to the right */
}

/* Menu to show when burger icon is clicked (hidden by default) */
.tab-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    /* Full screen height */
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
    border-left: 2px solid #ddd;
    transition: right 0.3s ease-in-out;
    /* Smooth transition */
}

.tab-menu .tab-button {
    width: 100%;
    /* Ensure buttons take full width of the menu */
    padding: 15px;
    text-align: left;
    background-color: transparent;
    /* Align text to the left */
}

.tab-menu.open {
    right: 0;
    /* Move the menu into view from the right */
}

.bottom-nav {
    display: none;
    flex-direction: row;
    position: fixed;
    /* Fix the element to the bottom */
    bottom: 40px;
    /* Stick it to the bottom */
    left: 0;
    width: calc(100% - 40px);
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    /* Semi-transparent background */
    color: white;
    padding: 20px;
    text-align: center;
    z-index: 9999;
    /* Ensure it is above other content */
    align-self: center;
    align-items: center;
    justify-content: space-around;
    border-radius: 35px;
    margin-left: 20px;
    margin-right: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    overflow-y: hidden;
}
/* Hide navbar initially (when it's scrolled down) */
.bottom-nav.hidden {
    transform: translateY(200%);
    transition: 0.7s ease-in-out;
}
.nav-button {
    /*padding: 10px 20px;*/
    text-decoration: none;
    color: black;
    font-size: 14px;
    display: inline-block;
    position: relative; /* Allows positioning the circle */
    transition: color 0.3s, transform 0.3s ease; /* Smooth transitions */
    overflow-y: hidden;
  }
  .nav-button.active{
    color: #EF4D08;

  }
  .nav-button.active > .nav-button label{
    color: #EF4D08;
  }
  .bottom-nav .nav-button i {
    font-size: 22px;
    color: #575757;
    overflow-y: hidden;
}

.nav-button.active,
.nav-label.active {
    color: #EF4D08; /* Orange color for text */
    
}

/* Change the icon color inside the active nav button */
.nav-button.active i {
    color: #EF4D08; /* Icon color to match the active state */
}
/* Optional: Change background of active nav button */


  .nav-button.active > .nav-button i {
    color: #EF4D08; /* Text turns white for the active tab */
    font-weight: bold; /* Bold text for the active tab */
    
  }
  .bottom-nav .nav-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%; /* Circle size (can be adjusted) */
    height: 120%;
    background-color: transparent;
    border: 3px solid transparent; /* Default invisible border */
    border-radius: 50%; /* Circle shape */
    transform: translate(-50%, -50%); /* Center the circle around the tab */
    transition: all 0.3s ease; /* Smooth transition for the circle */
    
}
.bottom-nav .nav-button.active::before {
    border-color: orange; /* Orange border for active tab */
    width: 150%; /* Larger circle */
    height: 150%;
    top: 50%;
    left: 50%;
  }

.nav-group {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.nav-group label {
    margin-top: 2px;
    color: #575757;
}

.logo-container {
    flex: 0 0 auto;
    margin-right: 20px;
}

.logo {
    height: 40px;
    width: auto;
}

.spacer {
    flex: 1;
}

.tabs-container {
    display: flex;
    flex: 0 0 auto;
    padding: 10px;
}

.tabs-container a {
    color: #575757;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    font-size: 17px;
    transition: background-color 0.3s;
}

.tabs-container a:hover {
    color: #ef4d08;
}

.tabs-container a.active {
    color: #ef4d08;
}

.tab-content {
    /* flex-grow: 1;
    overflow-y: auto;  
    padding: 20px;
    background-color: #ef4d08;
    color: white;
    */
    position: absolute;
    /* Position it absolutely within the body */
    top: 100px;
    /* Align to the top */
    left: 0;
    /* Align to the left */
    width: 100vw;
    /* Take up the full width of the viewport */
    height: calc(100vh - 100px);
    ;
    /* Take up the full height of the viewport */
    background: linear-gradient(to bottom, #ff3131, #ff914d);
    /* Example background color */
    background-image: url('Imgs/engine.jpg');
    /* Set the background image */
    background-size: cover;
    /* Make the image cover the entire div */
    background-position: center center;
    /* Center the image */
    background-repeat: no-repeat;
    /* Prevent the image from repeating */
    color: white;
}

.tab-content::before {
    content: '';
    /* Empty content to create a pseudo-element */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    /* Black tint with 40% opacity */
    z-index: 1;
    /* Ensure it's above the background image but below content */
}

.tab-content>* {
    position: relative;
    /* Make content appear above the tint */
    z-index: 2;
    /* Higher z-index to appear above the overlay */
}

.hidden {
    display: none;
}

/* Section styles */
section {
    height: 100vh;
    /* Full viewport height */
    padding: 20px;
    display: flex;
    /* Center content vertically and horizontally */
    flex-direction: row;
    justify-content: flex-start;
    /* Align content to the top */
    align-items: flex-start;
    /* Align content to the left */
    text-align: center;
    margin-top: 0;
    /* Remove margin, no need to offset for tab bar */
    scroll-snap-align: start;
    /* Snap section to the top on scroll */
    box-sizing: border-box;
}

section::before {
    content: '';
    position: absolute;
    /* Position relative to the section */
    top: 0;
    left: 0;
    width: 100%;
    /* Cover the entire width */
    height: 100%;
    /* Cover the entire height */
    z-index: -1;
    /* Place behind the section's content */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
    /* Adjust the mask gradient */
}

#about {
    background: linear-gradient(to bottom, #ff3131, #ff914d);
    /* Example background color */
    background-image: linear-gradient(rgba(0, 0, 0, 0.8),
            /* Gradient mask */
            rgba(0, 0, 0, 0.5)
            /* Same color for full opacity */
        ), url('Imgs/engine.jpg');
    /* Set the background image */
    background-size: cover;
    /* Make the image cover the entire div */
    background-position: center center;
    /* Center the image */
    background-repeat: no-repeat;
    /* Prevent the image from repeating */


}

#about .left {
    position: absolute;
    /* Position relative to the #about section */
    top: 100px;
    /* Start immediately below the tab bar */
    left: 0;
    /* Align to the left edge */
    width: 40vw;
    /* Occupy 50% of the screen width */
    height: calc(100vh - 100px);
    /* Occupy full viewport height */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(115, 115, 115, 0.5));

    color: white;
    /* Example text color */
    display: flex;
    /* Center content within the div */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    padding: 20px;
    /* Add padding for better spacing */
}
.logo-img{
    display: none;
    width: 80%;
    height: auto;
    overflow-y: hidden;
    position: absolute;
    top: 25px;
}
.logo-img img{
    height: 100%;
    width: 100%;
    object-fit:cover;
    filter: invert(0);
   
}
.logo-img img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0; /* Starts with no width */
    height: 100%;
    background: rgba(255, 255, 255, 1); /* Apply the inverted effect */
    filter: invert(0.5); /* Set the inversion filter */
    pointer-events: none; /* Make sure it doesn't block interactions */
    animation: invertAnimation1 3s linear infinite; /* Infinite animation */
  }
  @keyframes invertAnimation1 {
    0% {
      width: 0;
    }
    50% {
      width: 100%; /* Full width at the halfway point */
    }
    100% {
      width: 0; /* Reset to 0 width */
    }
  }
@keyframes invertAnimation {
    0% {
      clip-path: inset(0 100% 0 0); /* Initially, no inversion */
      filter: invert(0);
    }
    100% {
      clip-path: inset(0 0 0 0); /* Full image revealed */
      filter: invert(0.5); /* Apply the 50% inversion */
    }
  }
#about .explore {
    width: 100%;
    padding-top: 120px;

}

#about button {
    background-color: transparent;
    /*background-color: #ef4d08;*/
    color: #ef4d08;
    padding: 20px;
    width: 60%;
    bottom: 0px;
    border: 1px solid #ef4d08;
    border-radius: 15px;
    font-weight: bolder;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

#about button::before {
    width: 500px;
    height: 90%;
    background-color: white;
}

#about button:hover {
    background-color: #ff4700;
    color: white;
    transition: 0.3s ease-in-out;
    transform: translateY(-4px);
}
.contact-info {
    position: relative;
    overflow: hidden;
    height: 60px; /* Adjust based on content */
    width: 100%;
    margin-top: 60px;
}

.contact-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    font-size: 12px;
    color: #f5f5f5;
}
.contact-item h2{
    font-size: 16px;
}
.contact-item.show {
    opacity: 1;
    transform: translateY(0);

}

.hours h2 {
    margin-top: 60px;
    margin-bottom: 0px;
    font-size: 20px;
}

/*services style*/
#services {
    background-color: #f5f5f5;
    /*background-image:linear-gradient(
        rgba(0, 0, 0, 0.9), 
        rgba(0, 0, 0, 0.5) 
    ), url('Imgs/tool-wall.jpg'); */
    /* Set the background image */
    background-size: cover;
    /* Make the image cover the entire div */
    background-position: center center;
    /* Center the image */
    background-repeat: no-repeat;
    /* Prevent the image from repeating */
    display: flex;
    flex-direction: column;
    justify-content:flex-start;
    align-items: center;
    height: 100vh;
    /* Full height of the viewport */
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}



/* Service Categories Section */
.service-categories {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 10px;
    top: 20px;
}

h2 {
    text-align: center;
    font-size: 36px;
    padding-bottom: 40px;
    background-color: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
    overflow: visible;
}

.service-card {
    background-color: white;
    padding-top: 20px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-height: 600px;
    /* Set max height */
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}
.description.hidden{
    display: none;
}
.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #ef4d08;
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.service-card p {
    font-size: 16px;
    color: #555;
}

.learn-more-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: transparent;
    color: #ef4d08;
    border: 1px solid #ef4d08;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}

.learn-more-btn:hover {
    background-color: #E64A19;
    color: white;
    box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.3);
}

/* Sub Services and Accordion */
.sub-services {
    display: none;
    /* Hidden by default */
    padding-top: 20px;
    margin-top: 20px;
    max-height: 500px;
    overflow-y: auto;
    /* Allow scrolling */
}

.accordion-item {
    margin-bottom: 10px;
    background-color: #f1f1f1;
    padding: 10px;
    border-radius: 5px;
}

.accordion-item h4 {
    font-size: 18px;
    cursor: pointer;
    background-color: #FF5722;
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 5px;
}

.accordion-item h4:hover {
    background-color: #E64A19;
}

.accordion-item .icon {
    display: inline-block;
    /* Ensures it's inline, just like <i> */
    width: 22px;
    /* Set the width */
    height: 22px;
    /* Set the height */
    vertical-align: middle;
    /* Aligns the icon vertically in line with text */

}

.accordion-item .icon svg,
.accordion-item .icon img {
    width: 100%;
    /* Make the SVG fill the <i> size */
    height: 100%;
    /* Keep the aspect ratio */
    fill: white;
}

.accordion-description {
    padding: 10px 15px;
    font-size: 16px;
    color: #555;
    display: none;
    /* Hidden by default */
}

.accordion-item.active .accordion-description {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 18px;
    }
}

/*Contact Style*/
#contact {
    display: flex;
    flex-direction: row;
    height: 100vh;
    top: 100px;
    width: 100vw;
    padding: 0;
    font-family: Arial, sans-serif;
    background-image: linear-gradient(rgba(0, 0, 0, 0.9),
            /* Gradient mask */
            rgba(0, 0, 0, 0.8)
            /* Same color for full opacity */
        ), url('Imgs/toolbox.jpg');
    /* Set the background image */
    background-size: cover;
    /* Make the image cover the entire div */
    background-position: center center;
    /* Center the image */
    background-repeat: no-repeat;
    /* Prevent the image from repeating */
    font-family: "Trebuchet MS", sans-serif;
}

.contact-container {
    height: 100vh;
    width: 40vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #f5f5f5;
}

.channels {
    width: 40%;
    height: 60px;
    display: flex;
    flex-direction: row;
    object-fit: contain;
    text-align: center;
    align-items: center;
    justify-content: space-around;
}

.contact-container h1 {
    font-size: 40px;
    color: #ef4d08;
    letter-spacing: 4.5px;
    /*animation: glowing-text 1.5s infinite alternate;*/
}

.phone {
    width: 60px;
    height: 60px;
    overflow-y: hidden;
}

.phone img {

    height: 100%;
    /* Image takes up the full initial card */
    object-fit: contain;
}

.instagram {
    width: 60px;
    height: 60px;
    overflow-y: hidden;
}

.instagram img {

    height: 100%;
    /* Image takes up the full initial card */
    object-fit: contain;

}
.phone:hover{
    
}
.header {
    width: 100%;
    height: 30%;
    color: #EF4D08;
    /* Vibrant orange text */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 48px;
    /* Larger font size */
    font-family: 'Poppins', sans-serif;
    /* Sleek, modern font */
    font-weight: 700;
    /* Bold */
    text-transform: uppercase;
    padding: 20px;
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(239, 77, 8, 0.6), 0 0 25px rgba(239, 77, 8, 0.4);
    /* Orange glowing effect */
    animation: glowing-text 1.5s infinite alternate;
    /* Subtle glowing effect on text */
}

@keyframes glowing-text {
    0% {
        text-shadow: 0 0 15px rgba(239, 77, 8, 0.8), 0 0 25px rgba(239, 77, 8, 0.4);
    }

    100% {
        text-shadow: 0 0 30px rgba(239, 77, 8, 0.8), 0 0 50px rgba(239, 77, 8, 0.6);
    }
}




@keyframes glowing-line {
    0% {
        box-shadow: 0 0 20px rgba(239, 77, 8, 0.6), 0 0 30px rgba(255, 127, 80, 0.4);
    }

    100% {
        box-shadow: 0 0 40px rgba(239, 77, 8, 1), 0 0 60px rgba(255, 127, 80, 1);
    }
}

.form-container {
    height: 100%;
    width: 60%;
    background-color: #f5f5f5;
    color: #ef4d08;
    text-align: center;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.mail-form {
    display: flex;
    flex-direction: column;
    width: 90%;
    height: auto;
    text-align: left;
    position: relative;
    top: 250px;
    padding: 35px;
    gap: 20px;
    overflow: visible;

}

.form-container .form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    overflow: visible;
    z-index: 9999;
    /* Adds space between the label and input inside the group */
}

.mail-form .name {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    overflow: visible;
}

.name input {
    width: 48%;
}

.mail-form label {
    font-weight: bold;
    font-size: large;
}

.mail-form input {

    height: 40px;
    border-radius: 3px;
    border-style: solid;
    border-width: 0.2px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.mail-form textarea {
    border-radius: 3px;
    border-style: solid;
    border-width: 0.2px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.mail-form #send {
    border-radius: 7px;
    width: 80px;
    background-color: #ef4d08;
    font-weight: bold;
    color: #f5f5f5;
    border: none;
}

.mail-form #send:hover {
    background-color: #ff3131;
}

.mail-form input:focus,
.mail-form textarea:focus {
    border-color: #E64A19;
    /* Orange-red border when editing */
    outline: none;
    /* Remove the default outline */
    transform: scale(1.035);
    transition: 0.2s ease-in-out;
    z-index: 9999;

}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Content container to limit width and add margins */
.content-container {
    max-width: 800px;
    /* Maximum width of the content */
    margin: 0 auto;
    /* Center the container horizontally */
    padding: 30px 20px;
    /* Add some padding for smaller screens */
}

/* Styling for highlighted text */
.highlight {
    font-weight: bold;
    color: #ef4d08;
    /* Optional: Match your theme color */
}

/* Optional: Adjust strong tag styling */
strong {
    font-size: 3em;
    font-weight: bold;
    letter-spacing: 1.2px;
    color: #ef4d08;
    /* Optional: Make bold text stand out */
}

@media (max-width: 768px) {
    * {
        box-sizing: border-box;
        overflow-x: hidden;
    }

    body {
        scroll-behavior: smooth;
    }

    .tabs-container {
        display: none;
        /* Hide the tab buttons on small screens */
    }

    .logo-container {
        flex-grow: 0;
        /* Prevent logo from expanding */
    }

    .tab-bar {
        display: none;
        height: 80px;
    }

    .hamburger {
        display: block;
        /* Show hamburger icon */
    }
    .bottom-nav {
        display: flex;
    }
    .tab-menu {
        display: flex;
        /* Show the menu when burger icon is clicked */
    }

    #about .left {
        display: relative;
        width: 100%;
        height: 100% ;
        background-color: rgba(255, 255, 255, 0);
        top: 0;
        margin-right: -10px;
        margin: 0;
        padding: 0;
    }

    .tab-content {
        padding: 20px;
        background-color: white;
        /* Set a background color */
        position: relative;
        width: 100%;
        box-sizing: border-box;
    }

    #services{
        height: 150vh;
    }
    .content-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .card-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 3 columns */
        gap: 30px;
        /* Space between cards */
        justify-content: center;
        /* Center the grid horizontally */
        align-content: center;
        /* Center the grid vertically */
        align-items: start;
        /* Align grid items at the top */
    }

    .service-card{
        overflow: hidden;
    }
    .card {
        position: relative;
        background-color: #ef4d08;
        color: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.5s, box-shadow 0.5s, height 0.5s;
        cursor: pointer;
        text-align: center;
        height: 280px;
        /* Initial height only shows the image */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        opacity: 0.9;
        align-items: center;
    }

    .card .active {
        height: 800px;
        /* Expand height on hover */
        background-color: gray;
        z-index: 1;
        /* Bring the hovered card to the front */
        transition: 9s;
    }

    .card:active img {
        height: 150px;
        /* Shrink image to make room for content */
        transform: rotateZ(720deg);
        transition: 2s;

    }

    .card:active .card-content {
        transform: translateY(0);
        /* Slide content up */
        opacity: 1;
        /* Show content */
    }

    /*contact responsive*/
    #contact {
        flex-direction: column;
        height: 100vh;
        overflow: hidden;
    }

    .contact-container {
        width: 100%;
        height: 32%;
        z-index: 9999;
    }
    .contact-container h2{
        font-size: 18px;
    }
    .channels{
        justify-content: space-around;
    }
    .phone{
        width: 40px;
        height: 40px;
    }
    .instagram{
        width: 40px;
        height: 40px;
    }
    .form-container {
        width: 100%;
        height: 68%;
        text-align: center;
        align-items: center;
        justify-content: center;

    }

    .form-container form {
        top: 10px;
        width: 100%;
        gap: 10px;
    }

    .form-container .form-group {
        display: flex;
        flex-direction: column;
        gap: 5px;
        /* Adds space between the label and input inside the group */
    }

    .mail-form input[type="submit"] {
        align-self: center;
        /* Center the submit input button */
        width: 180px;
    }
}

@keyframes rotateThreeTimes {
    0% {
        transform: rotateZ(0deg);
    }

    50% {
        transform: rotateZ(60deg);
    }

    100% {
        transform: rotateZ(0deg);
    }

}