/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
   font-family: 'Open Sans', s;
}

h1, h2, h3 {
    color: #333;
}

p {
    color: #555;
}

/* Navigation Bar Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 1em 2em;
    
}

nav .logo {
    color: #fff;
    font-size: 1.5em;
    font-weight: bold;
}

nav .nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav .nav-links li {
    margin-left: 20px;
}

nav .nav-links a {
    text-decoration: none;
    color: #000000;
    padding: 8px 12px;
    transition: background-color 0.3s ease;
}

nav .nav-links a:hover {
    background-color: #000000;
    border-radius: 4px;
    color: white;
}

/* Dropdown Menu Styles */
nav .dropdown {
    position: relative;
}

nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav .dropdown:hover .dropdown-menu {
    display: block;
}

nav .dropdown-menu li {
    margin: 0;
}

nav .dropdown-menu a {
    display: block;
    padding: 8px 12px;
    color: #fff;
    text-decoration: none;
}

nav .dropdown-menu a:hover {
    background-color: #575757;
}

/* Hero Section Styles */
.hero {
    text-align: center;
    padding: 1em;
    background-image: url(img/HomePage.jpg);
    background-attachment: scroll;    
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 75vh;
}

.hero h1 {
    font-size: 60px;
    margin: 0px;
    color: white;
}

.hero p {
    font-size: 30px;
    color: #666;
    color: white;
    font-weight: 100;
    margin: 0px;
}



/* Services Section Styles */
.service-item img.service-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.services h2{
    margin-right: 30px;
}
/* Services Section Layout - Line Formation with Square Boxes */
.services {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    padding: 100px 50px;
    

}

.service-item {
    width: 300px;
    height: auto;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    
   
}

.service-item p{
    text-align: center;

}

.service-item h3{
margin-bottom: 0px;
}


/* Why Choose Us Section Styles */
.why-choose-us{
    padding: 40px 20px;
    background-color: #f0f0f0;
    text-align: center;
    font-weight: bold;
}

/* Industries Section Styles */
.industries {
    padding: 40px 20px;
    background-color: #fff;
}

.industries h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
}

.industry-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.industry-card {
    width: 300px;
    height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.industry-overlay {
    position: absolute;
    bottom: 0;
    width: 50%;
    background-color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 1.2em;
    font-weight: bold;
    border-top-right-radius: 10px;
}


/* Contact Section Styles */
.contact {
    padding: 40px 20px;
    background-color: #eaeaea;
    text-align: center;
}

.contact p {
    margin: 10px 0;
    font-size: 1.1em;
}

/* Titles and Subtitles Color Styles */
h1, h2 {
    color: #000000; /* Main titles color similar to the logo */
}

h3, p {
    color: Z#6b663af7; /* Lighter shade for subtitles */
}

#copyright {
    text-align: center;
}
