 :root {
            --primary-color: #333;
            --secondary-color: #555;
            --light-color: #f4f4f4;
            --accent-color: #007bff;
            --spacing: 1.5rem;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: var(--primary-color);
            background-color: var(--light-color);
        }

        .container {
            max-width: 1200px;
            margin: auto;
            padding: 0 var(--spacing);
        }
        
        /* Typography */
        h1, h2, h3, h4 {
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        h1 {
            font-size: 2.5rem;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        h2 {
            font-size: 2rem;
            text-align: center;
        }

        p {
            margin-bottom: 1rem;
        }
        
        /* --- Header Navigation (New Code) --- */
        .main-header {
            background: #fff;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo img {
            height: 40px;
            border-radius: 50%;
        }

        .logo a {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c3e50;
            text-transform: uppercase;
            text-decoration: none;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 2rem;
            margin: 0;
            padding: 0;
        }

        .nav-links a {
            font-weight: 600;
            position: relative;
            padding-bottom: 5px;
            text-decoration: none;
            color: #2c3e50;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #3498db;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #333;
            border-radius: 2px;
        }

        /* Hero Section */
        .hero {
            background: url('../images/AboutUs.png') no-repeat center center/cover;
            height: 60vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
        }

        .hero-content {
            position: relative;
            z-index: 10;
        }
        
        /* Main Content Sections */
        .content-section {
            padding: var(--spacing) 0;
        }

        .about-text {
            max-width: 800px;
            margin: auto;
            text-align: center;
        }

        .mission-vision {
            background-color: white;
            padding: var(--spacing);
            text-align: center;
        }
        
        .services-offered {
            text-align: center;
        }
        
        .services-list {
            list-style: none;
            margin-top: 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }
        
        .services-list li {
            font-size: 1.1rem;
            font-weight: bold;
            color: var(--secondary-color);
        }
        
        /* --- Footer (New Code) --- */
        .main-footer {
            background-color: #1a232f;
            color: #bdc3c7;
            padding: 3rem 0;
            text-align: center;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            gap: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-section {
            flex: 1 1 250px;
        }

        .footer-section h4 {
            color: #fff;
            margin-bottom: 1rem;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li a {
            color: #bdc3c7;
            text-decoration: none;
        }

        .copyright {
            margin-top: 2rem;
            font-size: 0.9rem;
        }
        
        .hero-content a{
            text-decoration: none;
            color:#f4f4f4;
        }
        .footer-section.contact-details a{
            color:#fff;
            text-decoration: none;
        }
        /* Responsive Media Queries */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                text-align: center;
                background: #fff;
                position: absolute;
                top: 80px;
                left: 0;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                padding: 15px 0;
                border-bottom: 1px solid #eee;
            }
            .hamburger {
                display: flex;
            }

            .footer-content {
                flex-direction: column;
                justify-content: center;
                align-items: center;
                text-align: center;
            }
        }
        body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #444;
    background-color: #f8f9fa;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #2c3e50;
    text-transform: uppercase;
}

h2 { font-size: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.75rem; margin-bottom: 0.5rem; }

a {
    text-decoration: none;
    color: #3498db;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Header & Navigation --- */
.main-header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    border-radius: 50%;
}

.logo a {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
}

/* --- Hero Section --- */
.hero-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    max-width: 800px;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
}

/* --- Sections --- */
section {
    padding: 6rem 0;
}

/* --- About Section --- */
.about-section {
    text-align: center;
    padding: 4rem 1rem;
}

.about-section h2 {
    color: #3498db;
}

/* --- Services Section --- */
.services-section {
    background-color: #ecf0f1;
    text-align: center;
}

.service-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.service-text {
    padding: 2rem;
    flex: 1;
    text-align: left;
}

.service-text h3 {
    margin-top: 0;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.service-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.service-list li:last-child {
    border-bottom: none;
}

/* --- Contact Section --- */
.contact-section {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
}

.contact-section h2 {
    color: #fff;
}

.contact-info-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-item {
    background: #34495e;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    flex: 1 1 250px;
}

.contact-item i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.contact-item h4 {
    margin: 0.5rem 0;
}

.contact-item p {
    margin: 0;
}

/* --- Footer --- */
.main-footer {
    background-color: #1a232f;
    color: #bdc3c7;
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
    flex: 1 1 250px;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li a {
    color: #bdc3c7;
}

.copyright {
    margin-top: 2rem;
    font-size: 0.9rem;
}
.footer-section.contact-details a{
    color: #fff;
}
/* --- Media Queries (Responsiveness) --- */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background: #fff;
        position: absolute;
        top: 80px;
        left: 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    .hamburger {
        display: flex;
    }

    .service-cards-container {
        grid-template-columns: 1fr;
    }

    .contact-info-container {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .logo a {
        font-size: 1rem;
    }
     .footer-content {
                flex-direction: column;
                justify-content: center;
                align-items: center;
                text-align: center;
            }
}
#loader{
    background: #444 url(../images/horse.gif)no-repeat center center;
    background-size: 25%;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 99999;
    top:0;
    
}
#loader p{
    color:#eee;
    text-align: center;
    margin-top: 400px;
    

}
#industry{
    background-color: #37647c;
}
#industry h2{
color: #fff;
text-shadow: 4px 4px 4px 2px rgba(0,0,0,0.5);
}
#industry ul {
  display: flex;
  flex-wrap: wrap; /* Allows items to wrap to a new line */
  justify-content: center; /* Centers the items horizontally */
  margin: 20px;
}

#industry ul li {
  list-style-type: none;
  padding: 30px;
  color: #ecf0f1;
  border: 2px solid rgb(1, 1, 46);
  margin: 15px;
  background-color: #071c35;
  border-radius: 20px;
  box-shadow: 5px 5px 10px 2px rgba(0, 0, 0, 0.5);
  text-align: center;
  flex-basis: 250px; /* Gives each item a base width, making them uniform */
  flex-grow: 1; /* Allows items to grow to fill available space */
  font-size: 18px;
}
#tools{
     background: url(../images/fasteners.png);
    background-size: cover;
}
#tools h2{
text-align: center;
color: #fff;
justify-content: center;

}
#tools p{
    text-align: center;
    color: #fd9800;
    font-size: 25px;
    text-shadow: 5px 5px 8px rgb(0, 0, 0);
   
}
#tools h3{
    text-align: center;
    color: #fff;
    margin-top: 30px;
    background-image: linear-gradient(90deg, orange, rgb(0, 255, 242)) repeat;
    background-clip: text;
    color: transparent;

}
#tools ul{
    display: flex;
    justify-content: center;
    
}
#tools ul li{
    text-align: center;
    display:inline;
    margin: 30px;
    font-size: 30px;
    background-image: linear-gradient(90deg, orange, rgb(255, 51, 0));
    background-clip: text;
    color: transparent;
    font-weight: bold;
}
.carousel-innercarousel-item img{
    height: 300px;
}
@media (max-width: 768px) {
    #industry{
        display: flex;
        flex-direction: column;
    }
    #industry ul{
        display:grid;
        grid-template-columns: 1fr;
    }
    #industry ul li{
       width:100%;
    }
    .indus{
        display:flex;
        flex-direction: column;
    }
    .indus marquee{
        display:grid;
        grid-template-columns: 1fr;
        
    }
.indusmarquee img{
    width:100%;
}
#tools ul{
    display:grid;
    flex-direction: row;
}
#tools ul li{
    width: 90%;
}
.logo marquee{
    grid-template-columns: repeat(4, 1fr);
}
}