* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Courier New", "Courier", monospace;
}

body {
  min-height: 100vh;
  background: url("/client-portfolio/Project-4657-9871562/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;
}

/* Hero Section */
.hero {
  background: rgba(225, 225, 225, 0.1);
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  margin-bottom: 60px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
}

/* About Section */
.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 80px;
  gap: 40px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.about-image img:hover {
  transform: scale(1.03);
}

.about-content {
  flex: 1;
  min-width: 300px;
  background: rgba(225, 225, 225, 0.1);
  backdrop-filter: blur(100px);
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #fff;
}

.about-content p {
  margin-bottom: 20px;
}

.signature {
  font-family: cursive;
  font-size: 24px;
  color: #3498db;
  margin-top: 20px;
}

/* Stats Section */
.stats-section {
  background-color: rgba(225, 225, 225, 0.1);
  backdrop-filter: blur(100px);
  color: #fff;
  padding: 80px 0;
  margin-bottom: 80px;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.stat {
  text-align: center;
  min-width: 200px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #3498db;
}

.stat-text {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Testimonials */
.testimonials {
  margin-bottom: 80px;
}

.testimonials h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: #fff;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  max-width: 350px;
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #555;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  color: #2c3e50;
  margin-bottom: 5px;
}

.author-info p {
  color: #7f8c8d;
  font-size: 14px;
}

/* CTA Section */
.cta-section {
  background-color: rgba(225, 225, 225, 0.1);
  backdrop-filter: blur(100px);
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 10px;
  margin-bottom: 80px;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 18px;
}

.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(240, 9, 9, 0.15);
}

/* 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;
  }
}
