
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
    background-color: black;
    scroll-behavior: smooth;
}
.capability-icon-inline {
  margin: 40px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: fit-content;
}
.capability-link {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.white-icon {
  filter: brightness(0) invert(1);
  width: 60px;
  height: 60px;
}
.capability-icon-inline img {
  width: 60px;
  height: 60px;
  cursor: pointer;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
  display: inline-block;
  vertical-align: middle;
}

.icon-label-inline {
  color: white;
  font-weight: bold;
  font-size: 1.5em;
  display: inline-block;
  vertical-align: middle;
}

a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}



.white-icon {
  filter: brightness(0) invert(1);
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

nav .logo {
    flex: 0 0 auto;
}

nav ul {
    display: flex;
    justify-content: center;
    flex: 1;
    gap: 40px;
    margin: 0;
    padding: 10px;
    list-style: none;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
nav .logo a {
    color: white;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bold;
}
.menu-toggle {
    display: none;
    font-size: 1.8em;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {
body {
text-align: center;
}

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        padding: 20px;
    }

    nav ul.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
        margin-left: 0;
    }
}

.hero {
    height: 100vh;
    background: url('hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 50px;
}

.hero-text {
    max-width: 500px;
}

section {
    padding: 20px 20px;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 20px auto;
}

form label {
    margin-top: 10px;
}

form input, form textarea {
    padding: 8px;
    margin-top: 5px;
}

form button {
    margin-top: 15px;
    padding: 10px;
    background: #333;
    color: white;
    border: none;
    cursor: pointer;
}
.icon-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
}
.icon-links .icon-img {
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

