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

body {
    margin: 0;
    padding: 0;
    font-family: 'Rajdhani', sans-serif;
    color: #ffffff;
    background-color: #000;
}

.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 {
    text-align: left;
    font-size: 12px;
    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 */
}
.button {
    border: 1px solid #fff; /* Thin white border */
    background-color: rgba(0, 0, 0, 0.6); /* slightly Transparent background */
    color: #fff; /* White text */
    padding: 5px 15px; /* Padding for button size */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    margin-left: 10px; /* Space between button and contact text */
    margin-right: 10px; /* Space between button and contact text */
    text-decoration: none; /* Remove underline from link */
    text-align: center;
    display: inline-block; /* Display as inline-block to behave like a button */
}
.button:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Slight background on hover */
}

.contact-button {
    border-style: solid;
    border-width: 1.5px;
    background-color: rgba(0, 0, 0, 0.6); /* slightly Transparent background */    
    min-width: 120px;
    color: olivedrab !important;
    border-color: olivedrab !important;
    font-weight: 600 !important;
    padding: 5px 15px; /* Padding for button size */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    margin-left: 10px; /* Space between button and contact text */
    margin-right: 10px; /* Space between button and contact text */
    text-decoration: none; /* Remove underline from link */
    text-align: center;
    display: inline-block; /* Display as inline-block to behave like a button */    
}
.contact-button:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Slight background on hover */
}

.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;
}
  