* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Courier New", "Courier", monospace;
}

body {
  min-height: 100vh;
  background: url("Background.png") no repeat;
  background-color: cover;
  background-position: center;
  background-color: rgb(3, 1, 14);
  /* display: flex; */
  /* align-items: center;
  justify-content: center;
  min-height: 100vh;
  flex-direction: row; */
  background: url(/client-portfolio/Project-4657-9871562/Background.png) #030728
    no-repeat center;
  background-size: cover;
  /* display: flex;
  flex-direction: column;
  align-items: center; */
  min-height: 100vh;
}

.hearder {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 100px;
  background: rgba(225, 225, 225, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(225, 225, 225, 0.2);
  z-index: 100;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(225, 225, 225, 0.4),
    transparent
  );
  transition: 0.5s;
}

header:hover::before {
  left: 100%;
}

.logo {
  color: #fff;
  font-size: 25px;
  text-decoration: none;
  font-weight: 600;
  cursor: default;
}

.navbar a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  margin-left: 39px;
  transition: 0.3s;
}

.navbar a:hover {
  color: #f00;
}

.about-color {
  color: #f00;
}

#menu-icon {
  font-size: 36px;
  color: #fff;
  display: none;
}

/* Breakpoints */
@media (max-width: 992px) {
  .header {
    padding: 1.25rem 4%;
  }
}

@media (max-width: 768px) {
  #menu-icon {
    display: block;
  }
  .navbar {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 0.5rem 4%;
    padding-left: 80px;
    background: rgba(225, 225, 225, 0.1);
    border-bottom: 2px solid rgba(225, 225, 225, 0.2);
    backdrop-filter: blur(10px);
    display: none;
  }

  .navbar.active {
    display: block;
  }

  .navbar a {
    display: block;
    margin: 1.5rem;
  }
}

.nav-bg {
  position: fixed;
  top: 4.8%;
  left: 0;
  width: 100%;
  height: 295px;
  background: rgba(225, 225, 225, 0.1);
  border-bottom: 2px solid rgba(225, 225, 225, 0.2);
  backdrop-filter: blur(10px);
  z-index: 99;
  display: none;
}

/* Features Section */

.features {
  margin-top: 10px;
  padding: 80px 0;
  /* background: linear-gradient(135deg, #f5f7fa 0%, #5a8bb8 100%); */
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  color: var(--secondary);
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-title p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--light);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
  color: var(--secondary);
}

body > section.features > div > div.features-grid > div:nth-child(2) > ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

body
  > section.features
  > div
  > div.features-grid
  > div:nth-child(2)
  > ul
  > li
  a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 16px;
  padding: 8px 5px;
  position: relative;
  transition: var(--transition);
}

body
  > section.features
  > div
  > div.features-grid
  > div:nth-child(2)
  > ul
  > li
  a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

body
  > section.features
  > div
  > div.features-grid
  > div:nth-child(2)
  > ul
  > li
  a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

body
  > section.features
  > div
  > div.features-grid
  > div:nth-child(2)
  > ul
  > li
  a:hover::after {
  width: 100%;
}

body > section.features > div > div.section-title > p {
  color: rgb(255, 254, 254);
  font-weight: 600;
}

body > section.features > div > div.features-grid > a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 16px;
  padding: 8px 5px;
  position: relative;
  transition: var(--transition);
}

.section-title h2 {
  color: #fff;
  font-size: 50px;
}

.feature-card img {
  width: 350px;
  align-self: center;
  border-radius: 15px;
}

body > section.features > div > div.features-grid > div:nth-child(1) > h3 {
  margin-top: 25px;
  font-size: 20px;
  color: #f00;
}

.feature-card h3 {
  margin-top: 25px;
  font-size: 20px;
  color: #f00;
}

.card1 {
  background: rgba(225, 225, 225, 0.1);
  display: flex;
  flex-direction: column;
  border-radius: 15px;
}

.card1 button {
  align-self: center;
}

body > section.features > div > div.features-grid > div:nth-child(6) > p {
  color: white;
}

/* footer */

footer {
  background: var(--secondary);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.container3 {
  margin-left: 100px;
}

.footer-column h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #ecf0f1;
  text-decoration: none;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .hamburger {
    display: block;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

  .stat {
    min-width: 150px;
  }

  .stat-number {
    font-size: 36px;
  }
}

/* buttons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  background: var(--primary);
  color: white;
  border: #fff solid;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: var(--shadow);
  animation: fadeInUp 1s ease 0.4s both;
}

.btn:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  color: #f00;
  box-shadow: 0 6px 12px rgba(161, 41, 41, 0.15);
}
