:root {
    --primary-color: #183174;
    --secondary-color: #1e409d;
    --accent-color: #4895ef;
    --light-color: #f8f9fa;
    --dark-color: #020026;
    --logo-color: rgb(0, 0, 0);
    --white-color: #ffffff;
    --border-color: #dddddd;
    --input-shadow-color: rgba(67, 97, 238, 0.1);
    --card-shadow-color: rgba(0, 0, 0, 0.1);
    --button-hover-bg: rgba(67, 97, 238, 0.1);
    --header-border-color: var(--light-color);
    --transparent-black: rgba(0, 0, 0, 0.5);
    --status-online: #12cc56; /* Green for Online */
    --status-offline: #f33737; /* Red for Offline */
    --status-no-recording: #f97316; /* Orange for No Recording */
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: var(--light-color); /* Fallback background color */
    background-image: url('bg7.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.headercontainer {
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    transition: transform 0.3s ease-in-out;
}

.header {
    display: flex;
    width: 88%;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--header-border-color);
    padding: 12px;
    max-width: 1330px;
    background: linear-gradient(to right, var(--secondary-color), var(--secondary-color));
    border-radius: 50px;
    margin: 10px;
    box-shadow: 0 4px 10px var(--card-shadow-color);
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    background-position: center -85px;
    background-repeat: no-repeat;
    z-index: -1;
    border-radius: 50px;
    overflow: hidden;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    width: 100%;
}

.logo {
    font-size: 10px;
    font-weight: bold;
    margin-left: 10px;
    cursor: pointer;
    margin-top: 10px;
    letter-spacing: 1px;
    color: var(--white-color);
}

.nav {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-right: 10px;
    height: 100%;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: var(--white-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: 0.3s ease;
}

.nav-link:hover {
    transform: scale(1.1);
}

.start-project {
    background-color: var(--white-color);
    color: var(--secondary-color);
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s ease;
    border: 2px solid transparent;
}

.start-project:hover {
    background-color: #eeeeee; /* Optional: create --hover-light-color for this */
    color: var(--secondary-color);
}

.dropdown {
    display: none;
    position: relative;
}

.dropdown-btn {
    background-color: rgba(255, 255, 255, 0);
    color: var(--white-color);
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
    margin-right: -10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.dropdown-btn:hover {
    color: #b4b4b4;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--light-color);
    text-align: left;
    margin-top: -5px;
    min-width: 120px;
    box-shadow: 0 8px 16px var(--card-shadow-color);
    z-index: 9999;
}

.dropdown-content a {
    color: var(--secondary-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd; /* Optional: create a var if used often */
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
    }
    
    .dropdown {
        display: block;
    }
}







.page-title {
    text-align: center;
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-color);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}