* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
}

@media (max-width:768px){
    body{
        overflow-x: hidden;
    }
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #382C54;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
    transition: all 0.3s ease;
}

.burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.toggle .line2 {
    opacity: 0;
}

.burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}


.logo {
    height: 4rem;
    aspect-ratio: auto;
}

.background-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background: url(images/background\ image.webp) no-repeat center center;
    background-size: cover;
    position: relative;
}

/* Mobile Navbar */
@media screen and (max-width: 768px) {
    .background-container{
        background: url(images/background\ image\ rsp.webp) no-repeat center center;
        background-size: cover;
        margin: 0;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        text-align: center;
        padding: 1rem 0;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .burger {
        display: block;
    }

    .nav-active {
        display: flex;
    }
}

.solution {
    font-family: "Bowlby One", sans-serif;
    color: #382C54;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.solution.animate {
    opacity: 1;
    transform: translateY(0);
}

.para-description {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.2s;
}

.para-description.animate {
    opacity: 1;
    transform: translateY(0);
}

.category-button-2 {
position: absolute;
bottom: 10%; 
left: 50%;
transform: translateX(-50%);
padding: 15px 40px;
background-color: rgba(51, 45, 89, 0.95);
color: white;
border: none;
border-radius: 50px;
font-size: 18px;
font-weight: bold;
cursor: pointer;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s ease;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.category-button-2:hover {
background-color: #433b70;
transform: translateX(-50%) translateY(-3px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.category-button-2:active {
transform: translateX(-50%) translateY(-1px);
}

/* css code for services */

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.manu-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 6px 10px rgba(0,0,0,0.4);
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.manu-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.manu-image {
    width: 100%;
    height: 200px;
    background-image: url(images/manufacturing.webp);
    background-repeat: no-repeat;
    background-size: 100% 200px;
    background-position: center;
    filter: brightness(0.7);
    transition: transform 0.5s ease;
}

.manu-card:hover .manu-image {
    transform: scale(1.05);
}

.manu-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.manu-content h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.manu-card:hover .manu-content h2 {
    transform: translateY(-5px);
}

.manu-content p {
    color: white;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    transition: transform 0.3s ease;
}

.manu-card:hover .manu-content p {
    transform: translateY(-5px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 10px rgba(0,0,0,0.4);
    position: relative;
    height: 350px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    transform: translateY(-5px) scale(1.02);
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(1) {
    transition-delay: 0.2s;
}

.service-card:nth-child(2) {
    transition-delay: 0.4s;
}

.service-card:nth-child(3) {
    transition-delay: 0.6s;
}

.service-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    transition: transform 0.5s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-content h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-content h3 {
    transform: translateY(-5px);
}

.service-content p {
    color: white;
    font-size: 14px;
    line-height: 1.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-content p {
    opacity: 1;
    transform: translateY(-5px);
}

.repair-card {
    background-color: #2c2859;
}

.repair-card .service-image {
    filter: brightness(0.4);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 14px;
    }

    .container{
        margin: 2rem auto;
        border-radius: 0;
    }
}

/* css code for product tiles */

.product-container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
padding: 20px;
}

.product-card {
background-color: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.product-image {
width: 100%;
height: 250px;
background-size: cover;
background-position: center;
border-top-left-radius: 15px;
border-top-right-radius: 15px;
border-bottom: 1px solid #eee;
}

.product-info {
padding: 20px;
text-align: center;
}

.product-title {
font-size: 20px;
font-weight: bold;
margin-bottom: 10px;
color: #333;
text-transform: uppercase;
letter-spacing: 1px;
}

.product-description {
font-size: 14px;
color: #666;
line-height: 1.4;
}

@media (max-width: 768px) {
.product-container {
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.container{
    padding: 1rem;
}

.container{
    padding: 1rem;
}
}

@media (max-width: 480px) {
.product-container {
grid-template-columns: 1fr;
}

.product-card {
max-width: 100%;
}
}

/* css code for the counter */

.counter-container {
display: flex;
flex-wrap: wrap;
gap: 40px;
justify-content: center;
max-width: 1200px;
margin: 0 auto;
}

.counter-block {
width: 300px;
background-color: white;
border-radius: 8px;
padding: 20px;
display: flex;
align-items: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}

.counter-block:hover {
transform: translateY(-5px);
}

.icon {
margin-right: 20px;
font-size: 40px;
color: #333;
}

.content {
flex-grow: 1;
text-align: center;
}

.number {
font-size: 28px;
font-weight: bold;
margin-bottom: 5px;
color: #000;
}

.label {
font-size: 14px;
color: #666;
text-transform: uppercase;
letter-spacing: 0.5px;
}

/* code for industrial and doestic button */

.button-bg {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background: url(images/garage\ doors.webp) no-repeat center center;
    position: relative;
}

.buttons-container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: flex;
gap: 20px;
z-index: 10;
}

.category-button {
padding: 15px 40px;
background-color: #332d59;
color: white;
border: none;
border-radius: 50px;
font-size: 18px;
font-weight: bold;
cursor: pointer;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s ease;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.category-button:hover {
background-color: #433b70;
transform: translateY(-3px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.category-button:active {
transform: translateY(-1px);
}

@media (max-width: 768px) {
.buttons-container {
flex-direction: column;
}

.category-button {
padding: 12px 30px;
font-size: 16px;
}
}

/* css code for footer */

.footer {
background-color: black;
color: #ffffff;
padding: 20px 40px;
width: 100%; 
}

.footer-content {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 20px;
max-width: 1200px; 
margin: 0 auto 20px; 
}

.contact-info {
flex: 1;
}

.contact-info h3 {
font-size: 16px;
font-weight: bold;
margin-bottom: 8px;
}

.contact-info a {
color: #aaa;
text-decoration: none;
display: block;
margin-bottom: 5px;
font-size: 14px;
}

.contact-info p {
color: #aaa;
font-size: 14px;
margin-top: 5px;
line-height: 1.4;
}

.phone-container {
display: flex;
align-items: center;
margin-bottom: 5px;
}

.phone-icon {
margin-right: 5px;
font-size: 14px;
}

.logo-2 {
flex: 1;
text-align: center;
}

.logo-2 img {
max-width: 180px;
opacity: 0.3;
}

.social-media {
flex: 1;
text-align: right;
}

.social-media h3 {
font-size: 16px;
font-weight: bold;
margin-bottom: 10px;
}

.social-icons {
display: flex;
justify-content: flex-end;
gap: 10px;
}

.social-icon {
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: transform 0.2s ease;
}

.social-icon:hover {
transform: scale(1.1);
}

.instagram {
background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.whatsapp {
background-color: #25D366;
}

.facebook {
background-color: #1877F2;
}

.footer-bottom {
text-align: center;
padding-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
max-width: 1200px; 
margin: 0 auto; 
}

.footer-bottom p {
color: #aaa;
font-size: 12px;
margin-bottom: 5px;
}

.footer-bottom a {
color: #aaa;
text-decoration: none;
}

.footer-bottom a:hover {
text-decoration: underline;
}

@media (max-width: 768px) {
.footer-content {
flex-direction: column;
}

.contact-info, .logo, .social-media{
width: 100%;
text-align: center;
margin-bottom: 20px;
}

.phone-container{
    justify-content: center;
}

.social-icons {
justify-content: center;
}
}

.par
{
font-family: "Bowlby One", sans-serif;
color: #382C54;
}

/* css code for awards */

.award-bg {
    height: 150vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background: url(images/award.webp) no-repeat center center;
    position: relative;
}