body, html {
    overflow-x: hidden !important;
    overflow-y: auto !important; /* 💥 Forces scrolling */
    height: auto !important;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'General Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: 'General Sans', sans-serif;
}

.logo-wrapper h1,
.logo-wrapper h1 a {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center; /* Ensures both texts are centered relative to each other */
    text-align: center;
    justify-content: flex-start;
}

.logo-text {
    font-family: 'Rajdhani', sans-serif;
    text-align: left;
    font-size: 13px;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 300;
    color: white;
    margin-top: -2px;
}

.hero-text-top, .hero-text-bottom {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
    background: rgba(0, 0, 0, 0); /* Transparent background for text */
}
.hero-text-top {
    margin-top: 60px; /* Adjust this percentage to position the text as needed */
    margin-bottom: 180px;
}
.hero-text-bottom {
    margin-bottom: 20px; /* Adjust this percentage to position the text as needed */
}
   
a {
    color: #fff; /* Ensures the email link is white like other text */
    text-decoration: none; /* Removes underline from link */
}
a:hover {
    text-decoration: underline; /* Adds underline on hover for accessibility */
}
.light-font {
    font-weight: 300; /* Lighter weight for specific elements */
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: all 0.2s ease;
    cursor: pointer;
    background: transparent;
    color: #fff;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    margin: 20px 0;
}
.btn-outline:hover {
    border-color: #ffaf00;
    color: #ffaf00;
    background: rgba(255, 175, 0, 0.06);
    box-shadow: 0 0 20px rgba(255, 175, 0, 0.25), 0 0 40px rgba(255, 175, 0, 0.1);
    transform: translateY(-1px);
    text-decoration: none;
}

.capabilities-box {
    background-color: rgba(0, 0, 0, 0.4); /* slight transparency */
    border-radius: 10px; /* Rounded corners */
    padding: 15px; /* Space inside the box */
    display: flex; /* Adjusts width to fit content */
    flex-direction: column;
    max-width: 90%; /* Limits width to keep it neat */
    border-color: white;
    border-width: 1px;
    border-style: solid;
    color: white;
}

.capabilities-box ul {
    padding-left: 6px; /* Indent list slightly */
    margin: 6px;
}

.capabilities-box li {
    text-align: left; /* Left aligns text */
}

.capabilities-box h1 {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
}
  