/* styles.css */
body {
  color: #333;
  background-color: #fff;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
 html {
  scroll-behavior: smooth;
 }

header {
  background: #fcfafa;
  padding: 20px 50px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid #ccc;
  
  
}

/* Parent container for logo */
.logo-container {
  display: flex;
  align-items: flex-end;
  gap: 10px; /* Space between bars and text */
  margin-bottom: 50px;
}

/* Bars container */
.bars {
  display: flex;
  align-items: flex-end; /* Align bars to the bottom */
  gap: 5px; /* Space between individual bars */
  padding-bottom: 10px;
}

/* Individual bars */
.bar {
  width: 15px;
  background-color: grey; /* Default color */
}

/* Specific bar heights */
.bar1 {
  height: 30px; 
  background-color: lightgrey; /* Darkest color */
}

.bar2 {
  height: 50px; 
  background-color: grey; /* Medium color */
}

.bar3 {
  height: 60px; 
  background-color: black; /* Lightest color */
}

/* Logo text styling */
.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.1vw;
}
.logo-text h1 {
  margin: 5px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 0.5;
  
}

.logo-text p {
  margin: 0;
  font-size: 1.2rem;
  
  color: rgb(10, 10, 10);
  
}


nav {
 
  color: #454343;
  padding: 5px;
  margin-bottom: -10px;
  
  
}


nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
  gap: 15px;
  display: flex;
  justify-content: column;
  align-items: center;
}

nav ul li {
  margin: 0 30px;
  
  
}

nav ul li a {
  color: #070707;
  
  text-decoration: none;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background 0.3s ease;
  
}

nav ul li a:hover {
  background-color: #ddd;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin-right: 0 auto;
  padding: 10px;
}

section {
  margin-bottom: 80px;
  padding: 10px;
  text-align: center;
}
section h2 {
  font-size: 1,5 rem;
  font-weight: 500;
  
}
h5 {
  font-size: 1rem;
  
}


#business h3 {
  font-size: 15px;
}

ul li {
  text-align: left;
}

#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none; /* Hidden by default */
  padding: 10px 15px;
  font-size: 16px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

#backToTop:hover {
  background: #0056b3;
}

#consultancy h4 {
  text-align: left;
  margin-bottom: 10px;
}
#consultancy article {
  margin: 100px;
}
/* Contact Us Section */
#contact-us {
  padding: 50px 20px;
  background-color: inherit;
  text-align: center;
}

#contact-us h2 {
  font-size: 35px;
  margin-bottom: 20px;
}

/* Form Container */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: transparent;
  padding: 20px;
  border: 1px solid #ddd;;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Form Group */
.form-group {
  margin-bottom: 15px;
  text-align: left;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #007bff;
  outline: none;
}

/* Submit Button */
.btn-submit {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn-submit:hover {
  background-color: #0056b3;
}
button, .btn-submit, input, textarea {
  font-size: 1rem;
  padding: 12px;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  justify-items: center;
}

.client-logos img {
  width: 150px;
  height: auto;
  mix-blend-mode: multiply;
}

#client-logos1 {
  width: 200px;
  height: auto;
  mix-blend-mode: multiply;
}


footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  margin-top: 50px;
}
