/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Global styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    color: #333;
}

header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}

.logo img {
    height: 50px; /* Adjust as needed */
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.header-section {
    height: 80vh;
    background-image: url('image3.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header-content {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}
/* ... (previous styles) ... */

.portfolio-section, .about-section, .services-section {
    padding: 50px;
    background-color: #f8f8f8;
}

.portfolio-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.portfolio-item {
    flex: 1 1 calc(33.33% - 20px);
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
}

.portfolio-item img {
    max-width: 100%;
    border-radius: 10px;
}

.about-content {
    text-align: ;
}

.services-items {
    display: flex;
    gap: 20px;
}

.service-item {
    flex: 1 1 calc(50% - 20px);
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


footer {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.social-media {
    margin-bottom: 20px;
}

.social-media a {
    display: inline-block;
    margin-right: 10px;
}

.social-media img {
    width: 30px;
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-media img:hover {
    opacity: 1;
}
/* ... Previous CSS code ... */

.our-clients {
    text-align: center;
    padding: 3rem 0;
}

.our-clients h2 {
    margin-bottom: 1rem;
}

/* You can keep the existing .scrolling-image styles or modify as needed */

/* Additional styles for the client images */
.our-clients .scrolling-image {
    overflow: hidden;
    white-space: nowrap;
}

.our-clients .scrolling-image img {
    display: inline-block;
    max-width: 100px; /* Adjust size as needed */
    height: auto;
    vertical-align: middle;
    margin-right: 2rem;
    animation: scrollClients 20s linear infinite;
}

@keyframes scrollClients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-300%); } /* Adjust percentage based on the number of client images */
}


.contact-us {
    text-align: center;
    padding: 3rem 0;
}

.contact-us h2 {
    margin-bottom: 1rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form button {
    background-color: #FF0000;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
/* ... Previous CSS code ... */

.featured-project {
    text-align: center;
    padding: 3rem 0;
}

.featured-project h2 {
    margin-bottom: 1rem;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  #navbar {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
  }
  
  #navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  #navbar ul li {
    margin-right: 20px;
    position: relative;
  }
  
  #navbar ul li a {
    text-decoration: none;
    color: black;
    display: block;
    padding: 10px;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    display: block;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
/* ... Rest of the CSS code ... */