* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
  background: black;
  color: #fff;
  overflow: hidden;
}

canvas {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Header and Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #000;
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  height: 80px;
  border-bottom: 2px solid #fff;
}

body {
  padding-top: 100px;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  width: 120px;
  height: auto;
  margin-right: 10px;
}

header nav ul {
  display: flex;
  list-style: none;
}

header nav ul li {
  margin: 0 10px;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

header nav ul li a:hover {
  color: #F28E1C;
}

/* Section styling with added space */
.section {
  padding: 80px 20px;
  margin-bottom: 40px;
  min-height: 100vh;
  line-height: 1.25; /* Reduced line spacing */
}

.section h1 {
  color: #f28e1c;
  font-size: 2rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  border-bottom: 2px solid #f28e1c;
  padding-bottom: 10px;
}

.section p::first-letter {
  font-size: 2em; /* Make the first letter larger */
  color: #F28E1C; /* Use the orange color for the first letter */
  font-weight: bold; /* Optional: make it bold */
}

.section h2 {
  margin-top: 10px; /* Adds extra space above each h2 heading */
  padding-left: 10px; /* Optional: Adds slight indentation to the left */
  font-size: 1.5em; /* Optional: Adjusts the size of h2 */
  color: #F28E1C; /* Optional: Sets color to orange for consistency */
}





/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #0A0F2C;
  color: #fff;
  position: relative;
  width: 100%;
  margin-top: 40px;
}

/* Fade-in effect */
.fade-in {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.fade-in.visible {
  opacity: 1;
}

/* Hamburger menu icon */
.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

.clients-carousel {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  margin: 20px 0;
}

.clients-images-container {
  overflow: hidden;
  width: 100%;
}

.clients-images {
  display: flex;
  transition: transform 0.5s ease;
}

.clients-images img {
  width: 300px;
  height: auto;
  margin-right: 10px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
}

.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}

.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

/* Mobile Responsive Design */
/* Mobile Responsive Design */
@media (max-width: 768px) {
  body {
    padding-top: 100px;
    overflow-y: auto;
  }

  header nav ul {
    display: none;
    flex-direction: column;
    background: #000;
    padding: 10px;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    max-height: 300px; /* Adjust height as needed */
    overflow-y: scroll; /* Add vertical scroll for the menu */
  }

  header nav ul.show {
    display: flex;
  }

  .menu-icon {
    display: block;
  }

  .section {
    padding: 60px 15px;
    font-size: 1rem;
    overflow-y: auto; /* Make sections scrollable on mobile */
    max-height: 80vh; /* Limit height of sections to viewport height */
  }
}
