/* Body Background - Fixed Cityscape */
body {
    background: url("../img/cityscape.png") no-repeat center bottom;
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Poppins', sans-serif; 
    margin: 0;
    padding: 0;
    position: relative;
    overflow-y: auto; 
}

body::before {
    content: "";
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: -1;
}


.title h1 {
    text-align: center;
    text-transform: uppercase;
    font-size: 26px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); 
    color: white;
    padding: 15px;
    position: relative; 
    z-index: 1;
}


.table-container {
    position: relative;
    z-index: 1; 
    padding: 20px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: white; 
}

.table th, .table td {
    border: 1px solid black;
    padding: 8px;
    text-align: left;
}

.table th {
    background: rgba(0, 0, 0, 0.1); 
}


.table th a {
    color: black;
    text-decoration: none;
}

.table th a:hover {
    text-decoration: underline;
}

   /* General Styles */
   body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Background Effect */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/futuristic-background.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    z-index: -1;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    z-index: 1;
}

.hero-title {
    font-size: 4em;
    font-weight: bold;
    color: #00e6e6;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.hero-subtitle {
    font-size: 1.5em;
    color: #ffffff;
    margin: 20px 0;
}

.cta-button {
    padding: 15px 40px;
    background-color: #00e6e6;
    color: #121212;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
}

.cta-button:hover {
    background-color: #ffffff;
    color: #00e6e6;
    transform: scale(1.1);
}

/* Features Section */
.features-section {
    padding: 50px 20px;
    background-color: #1a1a1a;
    text-align: center;
}

.feature-icon {
    font-size: 3em;
    color: #00e6e6;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.8em;
    color: #ffffff;
    margin-bottom: 10px;
}

.feature-description {
    font-size: 1.2em;
    color: #bbbbbb;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
footer {
    padding: 20px 0;
    background-color: #121212;
    text-align: center;
    color: #bbbbbb;
}

footer a {
    color: #00e6e6;
    text-decoration: none;
}

footer a:hover {
    color: #ffffff;
}
