* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  background: #0a0a1a;
  color: white;
}

/* CONTAINER */
.container {
  width: 90%;
  margin: auto;
}

/* NAVBAR */
header {
  background: #000;
  padding: 15px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  font-size: 28px;
  font-weight: bold;
}

.future {
  color: #ff6a00;
}

.tech {
  color: white;
  margin-left: 5px;
}

/* MENU */
.menu {
  list-style: none;
  display: flex;
}

.menu li {
  margin-left: 25px;
}

.menu a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.menu a:hover {
  color: #ff6a00;
}

/* HERO */
.homeSlider {
    height: 100vh;
    background: url(./image/slide-1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.homeSlider h1 {
  font-size: 40px;
  margin-bottom: 20px;
  text-transform: uppercase;

}

.homeSlider p {
  margin-bottom: 30px;
  color: #ccc;
}

.sliderContent {
  color: white;
	width: 700px;
}
.sliderContent h1 {
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
	margin-bottom: 30px;
	margin-top: 120px;
	float: left;
}
.sliderContent p {
  font-weight: 600;
  line-height: 25px;
  width: 460px;
	margin-bottom: 30px;
}


.homeSlider button {
  background: #ff5200;
  color: wheat;
  border: none;
  padding: 15px 25px;
  font-size: 20px;
  font-weight: 600;
	border-radius: 3px;
  margin-bottom: 100px;
	transition: 0.5s;
}

.homeSlider button:hover {
  background: #333;
}

.sliderNav {
	width: 60px;
	margin: auto;
	padding: 30px 0px;
}
.sliderNav span {
	width: 10px;
	height: 10px;
	background: transparent;
	border: 4px solid #ddd;
	display: block;
	border-radius: 100%;
	cursor: pointer;
	float: left;
	margin: 5px 5px;	
}   
.sliderNav span:last-child{
	background: #ff5200;
	border-color: #ff5200; 
}

/* SERVICES */
.services {
  padding: 80px 0;
  text-align: center;
}

.services h2 {
  margin-bottom: 40px;
}

.cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.card {
  width: 30%;
  background: #111;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.card:hover {
  background: #ff6a00;
}

.card h3 {
  margin-bottom: 10px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #000;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
}

.modal-content {
  background: #111;
  margin: 10% auto;
  padding: 20px;
  width: 350px;
  border-radius: 10px;
  text-align: center;
}

.modal-content h2 {
  margin-bottom: 20px;
}

.modal-content input {
  width: 90%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  outline: none;
}

.modal-content .btn {
  background: #ff6a00;
  color: white;
  padding: 10px;
  border: none;
  width: 100%;
  cursor: pointer;
}

.tabs button {
  background: #ddd;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 5px;
}

.tabs button:hover {
  background: #ff6a00;
  color: white;
}

.tabs button.active {
  background: #62615f;
  color: white;
}

.close {
  float: right;
  font-size: 25px;
  cursor: pointer;
}

body {
  text-align: center;
  background: #0a0a1a;
  color: white;
  font-family: 'Orbitron', sans-serif;
}

button {
  padding: 10px 20px;
  background: #ff6a00;
  border: none;
  color: white;
  cursor: pointer;
}

/* DASHBOARD */
.dashboard-body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #0a0a1a, #1a1a3d);
  color: white;
}

.dashboard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #111;
}

.dashboard-nav h2 {
  color: orange;
}

.dashboard-nav button {
  padding: 8px 15px;
  background: orange;
  border: none;
  cursor: pointer;
  color: white;
  border-radius: 5px;
}

.dashboard-container {
  display: flex;
  gap: 20px;
  padding: 40px;
  flex-wrap: wrap;
}

.card {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  min-width: 250px;
  backdrop-filter: blur(10px);
}

.card h1 {
  margin-bottom: 10px;
}