* {
  margin: 0;
  padding: 0;
  font-family: "Orbitron", sans-serif;
}


:root{
  --bg-color:#fdff;
}

body {
  background-color: #1c1c1c;
}
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0d0d0d;
  padding: 0 40px;
  height: 60px;
}
.logo a {
  font-size: 24px;
  font-weight: bold;
  color: white;
  font-family: sans-serif;
  text-decoration: none;
  text-transform: capitalize;
}
.nav-bar ul {
  display: flex;
  gap: 30px;
  list-style: none;
}
.nav-bar ul li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  transition: color 0.3s ease;
}
.nav-bar ul li a:hover ,.menue-button:hover{
  color: #00ffff;
}

.hero {
  background: #0a0a0a;
  padding: 100px 20px;
  text-align: center;
}
.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #00ffff;
}
.hero-content h1 span {
  color: #9d00ff;
}
.hero-content p {
  font-size: 18px;
  color: white;
}
.hero-content a {
  text-decoration: none;
  background-color: #00ffff;
  margin-top: 15px;
  padding: 10px;
  display: inline-block;
  font-size: 20px;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #00ffff;
}
.hero-content a:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
  background-color: #00e6e6;
  color: #000;
}
.features-section {
  padding: 60px 20px;
  background-color: #111;
  color: #fff;
  text-align: center;
}

.features-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #00ffd1;
}

.features-data {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-box {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.3s;
  width: 300px;
  text-align: center;
}

.feature-box i {
  font-size: 40px;
  color: #00ffd1;
  margin-bottom: 20px;
}

.feature-box:hover {
  box-shadow: 0 10px 20px rgba(0, 255, 209, 0.2);
  transform: translateY(-5px);
}

.feature-box h3 {
  margin-bottom: 10px;
  color: #fff;
}

.feature-box p {
  font-size: 14px;
  color: #ccc;
}

.price-section {
  width: 100%;
  background-color: #0b0c10;
  padding: 60px 20px;
}
.price-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #00ffd1;
}
.price-data {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.price-box ul {
  list-style: none;
}
.price-box {
  background-color: #1f2833;
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.3s;
  text-align: center;
}
.price-box h3 {
  color: #00ffff;
  margin-bottom: 20px;
}
.price-box p {
  color: #00ff7f;
  font-size: 20px;
  padding: 10px;
}
.price-box ul li {
  color: #cccccc;
  line-height: 25px;
}
.price-box a {
  background-color: #00ff7f;
  text-decoration: none;
  padding: 10px;
  margin-top: 20px;
  display: inline-block;
  border-radius: 8px;
  color: #111;
  font-weight: bold;
}
.price-box a:hover {
  box-shadow: 0 0 15px #00ff7f, 0 0 30px #00ff7f;
  transition: box-shadow 0.3s ease;
}
.price-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(0, 255, 127, 0.4), 0 0 40px rgba(0, 255, 127, 0.2);
  transition: all 0.3s ease;
}

.reviewes {
  background-color: #1b1e30;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.reviewes h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #00ffd1;
  
}
.reviews-data {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.reviews-box {
  background-color: #2e2b4f;
  padding: 40px;
  border-radius: 20px;
  width: 300px;
}
.reviews-box .profile {
  display: flex;
  align-items: center;
  gap: 20px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.reviews-box .img-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.reviews-box .profile img {
  width: 100%;
}
.stars {
  color: gold;
  margin-bottom: 7px;
  font-size: 20px;
}
.reviews-box p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.829);
  line-height: 1.6;
  font-size: 18px;
}
footer {
  background-color: #0d0d0d;
  color: #ccc;
  padding: 30px 20px;
  text-align: center;
}
footer h3 {
  color: #00ffff;
  font-size: 24px;
  margin-bottom: 10px;
}
footer p {
  margin-bottom: 20px;
  font-size: 14px;
  color: #999;
}
.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  padding: 0;
}
.footer-links li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
}
.footer-links li a:hover {
  color: #00ffff;
}
.social-links {
  margin-bottom: 20px;
}
.social-links a {
  margin: 0 10px;
  color: #00ffff;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.social-links a:hover {
  color: #9d00ff;
}
footer .copyright {
  font-size: 15px;
  color: #666;
}
.right-side {
  display: flex;
  align-items: center;
  gap: 30px;
}
.side-bar{ 
  display: none;
  background-color: #0f0f0f27;
  height: 100vh;
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  width: 250px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  border-left: 1px solid rgba(99, 11, 11, 0.05);

}
.side-bar ul{
  list-style: none;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  height: 100%;
  backdrop-filter: blur(20px);
}
.side-bar ul li{
  width: 100%;
}
.side-bar ul li a{
  text-decoration: none;
  color: white;
  width: 100%;
  display: block;
  padding: 20px;
  margin: 10px 0px;
  border-radius: 8px;
  transition: background-color 0.3s, color 0.3s;
  font-weight: bold;
  font-size: 18px;
}
.side-bar ul li a:hover {
  background-color: #00e6e6;
  color: #0f0f0f;
}
.close-button {
  color: #fff;
  font-size: 24px;
  padding: 20px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.close-button:hover {
  transform: scale(1.3);
  color: #00e6e6;
}
.right-side .menue-button {
  color: white;
  cursor: pointer;
  display: none;
}

@media(max-width:800px){
 .hide-navbar{
  display: none;
 }
 .right-side .menue-button{
  display: block;
 }
}
@media(max-width:400px){
 .side-bar {
    width: 100%;
  }
  .right-side .menue-button{
  display: block;
 }
}

