	:root {
	    --bg-deep: #ffffff;
	    --bg-mid: #ffffff;
	    --bg-soft: #ffffff;
	    --sun: #373737;
	    --sun-soft: #ffffff;
	    --text-main: #f4f7fb;
	    --text-dim: #c8d6e7;
	    --card-bg: #3f3f3f6b;
	    --card-border: rgba(14, 13, 13, 0.18);
	    --shadow: 0 22px 60px rgba(62, 62, 62, 0.45);
	}
	
	* {
	    box-sizing: border-box;
	}
	
	html {
	    scroll-behavior: smooth;
	}
	
	body {
	    margin: 0;
	    min-height: 100vh;
	    color: var(--text-main);
	    background: url("/public/bg1.jpg") no-repeat center/cover;
	    background-attachment: fixed;
	    background-size: cover;
	}
	
	body::before,
	body::after {
	    content: '';
	    position: fixed;
	    width: 360px;
	    height: 360px;
	    border-radius: 50%;
	    filter: blur(90px);
	    z-index: -1;
	    animation: drift 14s ease-in-out infinite;
	}
	
	.sidebar {
	    position: fixed;
	    top: 0;
	    left: 0;
	    height: 100%;
	    width: 250px;
	    background: rgba(0, 0, 0, 0.85);
	    color: rgb(255, 255, 255);
	    padding: 20px;
	    transform: translateX(-100%);
	    transition: transform 0.3s ease;
	    z-index: 1001;
	    a {
	        text-decoration: none;
	        color: white
	    }
	}
	
	#toggle {
	    position: fixed;
	    top: 20px;
	    left: 20px;
	    z-index: 1000;
	    font-size: larger;
	    background: rgba(0, 0, 0, 0.4);
	    color: rgb(255, 255, 255);
	    border: none;
	    padding: 10px 15px;
	    cursor: pointer;
	    border-radius: 5px;
	}
	
	.sidebar.active {
	    transform: translateX(0);
	}
	
	#overlay {
	    position: fixed;
	    top: 0;
	    left: 0;
	    width: 300px;
	    height: 100%;
	    background: rgba(0, 0, 0, 0.9);
	    opacity: 0;
	    pointer-events: none;
	    transition: opacity 0.3s ease;
	    z-index: 1002;
	}
	
	#closeSidebar {
	    opacity: 1;
	    pointer-events: all;
	}
	
	ul {
	    list-style: none;
	    li {
	        margin: 15px 0;
	    }
	}
	
	button {
	    background-color: rgba(0, 0, 0, 0);
	}
	
	#closeSidebar {
	    border: none;
	    color: white;
	    font-size: 25px;
	    background-color: rgba(0, 0, 0, 0);
	    position: absolute;
	    left: 200px;
	}
	
	.nav-btn {
	    font-size: 16px;
	    padding: 10px 20px;
	    background: rgba(0, 0, 0, 0);
	    color: white;
	    border: none;
	    border-radius: 6px;
	    cursor: pointer;
	    width: 100%;
	    text-align: start;
	}
	
	.nav-btn:hover {
	    background: #ffffff;
	    a {
	        text-decoration: none;
	        color: rgb(0, 0, 0)
	    }
	    transform: scale(1.15);
	}
	
	#logo {
	    width: 40px;
	    height: auto;
	    border-radius: 10px;
	    margin-bottom: 20px;
	}
	
	.head a {
	    text-decoration: none;
	    color: white;
	    display: flex;
	    justify-content: center;
	    align-items: center;
	}
	
	.head {
	    width: 100%;
	    max-width: 380px;
	    margin: 0 auto;
	    padding: var(--space-md);
	    display: flex;
	    flex-direction: column;
	    gap: var(--space-sm);
	}
	
	.head h2 {
	    text-align: center;
	    font-size: 35px;
	}
	
	.navbar {
	    display: flex;
	    flex-direction: row;
	    justify-content: left;
	}
	
	.head img {
	    width: 50px;
	    height: auto;
	    border-radius: 10px;
	    margin-bottom: 20px;
	    margin-top: 10px;
	}
	
	.about-hero {
	    text-align: center;
	    padding: 120px 20px 60px;
	    max-width: 900px;
	    margin: auto;
	}
	
	.about-hero h1 {
	    font-size: 3rem;
	}
	
	.about-hero p {
	    color: #ccc;
	    margin-top: 10px;
	}
	
	.hero-buttons {
	    margin-top: 20px;
	    display: flex;
	    justify-content: center;
	    flex-wrap: wrap;
	    gap: 12px;
	}
	
	.hero-buttons a:hover {
	    transform: translateY(-10px);
	    background-color: #514e4e;
	}
	
	.hero-buttons a {
	    padding: 10px 20px;
	    border-radius: 20px;
	    margin: 5px;
	    text-decoration: none;
	    color: white;
	    border: 1px solid white;
	}
	
	.container {
	    max-width: 1000px;
	    margin: auto;
	    padding: 20px;
	}
	
	.section {
	    background: rgba(0, 0, 0, 0.6);
	    padding: 25px;
	    margin: 20px 0;
	    border-radius: 15px;
	}
	
	.section:hover {
	    transform: translateY(-10px);
	    background-color: #514e4e;
	}
	
	.team-section {
	    text-align: center;
	    margin-top: 50px;
	}
	
	.team-grid {
	    display: grid;
	    grid-template-columns: repeat(3, 1fr);
	    gap: 20px;
	}
	
	.team-card {
	    /* background: rgba(0,0,0,0.7); */
	    backdrop-filter: blur(10px);
	    /* blur */
	    -webkit-backdrop-filter: blur(10px);
	    /* safari support */
	    padding: 20px;
	    border-radius: 12px;
	    transition: 0.3s;
	}
	
	.team-card:hover {
	    transform: translateY(-10px);
	    background-color: #514e4e;
	}
	
	.team-card h2 {
	    color: rgb(198, 189, 189);
	}
	
	@media(max-width:900px) {
	    .team-grid {
	        grid-template-columns: 1fr;
	    }
	}