* {
  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;
}

#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;
}

/* photo preview */
.photo-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  /* padding-left: 460px; */
  width: 100%;
  height: 100%;
  margin-top: 00px;
}

.slider-wrapper {
  overflow: hidden;
  /* max-width: 1200px; */
  margin: 0 70px 55px;
}

.slider-wrapper .card-list .card-item {
  color: #fff;
  user-select: none;
  /* padding: 150px; */
  height: 395px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  backdrop-filter: blur(30px);
  /* background: rgba(255, 255, 255, 0.2); */
  /* border: 1px solid rgba(255, 255, 255, 0.5); */
}

.card-list .card-item .user-image {
  width: 360px;
  height: 360px;
  /* border-radius: 50%; */
  /* margin-bottom: 40px; */
  margin-left: 10px;
  margin-right: 10px;
  /* border: 3px solid #fff; */
  padding: 4px;
}

.card-list .card-item .user-profession {
  font-size: 1.15rem;
  color: #e3e3e3;
  font-weight: 500;
  margin: 14px 0 40px;
}

.card-list .card-item .message-button {
  font-size: 1.25rem;
  padding: 10px 35px;
  color: #030728;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  background: #fff;
  border: 1px solid transparent;
  transition: 0.2 ease;
}

.card-list .card-item .message-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  color: #fff;
}

.slider-wrapper .swiper-pagination-bullet {
  background: #fff;
  height: 15px;
  width: 15px;
}

.slider-wrapper .swiper-slide-button {
  color: #fff;
  transition: 0.2 ease;
}

.slider-wrapper .swiper-slide-button:hover {
  color: #4658ff;
}

@media (max-width: 768px) {
  .slider-wrapper {
    margin: 0 10px 40px;
  }

  .slider-wrapper .swiper-slide-button {
    display: none;
  }
}

/* hero section */
.container {
  z-index: 100;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: -100px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #fff;
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 1.5rem;
  max-width: 900px;
  margin: 0 auto 40px;
  color: var(--text-light);
  animation: fadeInUp 1s ease 0.2s both;
  color: #f00;
  text-align: center;
}

.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);
}

.container h1 {
  text-align: center;
}

.container .btn {
  align-self: center;
}

/* Features Section */

.features {
  margin-top: 500px;
  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;
  }

  .main_menu--container ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .seasonal-content {
    flex-direction: column;
  }
}
