/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  color: #333;
}

/* Navbar start */
.headerNavbar {
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: #fff;
}

.navbar {
  width: 95%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 15px;
  border-radius: 5px;
  /* background: green; */
}

/* === Logo === */
.logo {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #2b4eff;
  letter-spacing: 0.5px;
  width: 250px;
  cursor: pointer;
}
.logo a {
  margin-top: 7px;
}
.logo a img {
  width: 100%;
  height: 100%;
}

/* === Navigation Links === */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
}

.nav-links li a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #00aeef;
}

/* === Buttons === */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.nav-actions span {
  position: absolute;
  bottom: -17px;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  color: #183bcc;
  left: 2px;
}

.btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid #2b4eff;
  transition: 0.3s;
}

.btn-primary {
  background: #2b4eff;
  color: white;
}
.btn-primary:hover {
  background: #183bcc;
}

.btn-outline {
  color: #2b4eff;
}
.btn-outline:hover {
  background: #eaf0ff;
}

/* === Hamburger Menu === */
.menu-icon {
  display: none;
  font-size: 1.6rem;
  color: #2b4eff;
  cursor: pointer;
  transition: 0.3s;
}

#menu-toggle {
  display: none;
}

.navHamburger {
  display: none;
  position: fixed;
  top: 53px;
  left: 0;
  width: 100%;
  padding: 10px 0;
  background-color: #00aeef;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.navHamburger ul {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
}
.navHamburger li {
  list-style-type: none;
}

.navHamburger li a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 15px 0;
  transition: all 0.3s ease;
}

/* === Hamburger Footer === */
.hamburger-footer {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.hamburger-footer .btn-login,
.hamburger-footer .btn-register {
  background: #fff;
  color: #0077ff;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.hamburger-footer .btn-register {
  background: #0077ff;
  color: #fff;
}

.hamburger-footer .btn-login:hover {
  background: rgba(255, 255, 255, 0.8);
}

.hamburger-footer .btn-register:hover {
  background: #005fcc;
}

/* === Social Links === */

.mobilActions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}
.mobilActions a {
  background: #fff;
  color: #2b4eff;
  font-weight: bold;
  font-size: 1.3rem;
  border: none;
  text-decoration: none;
  padding: 10px 20px !important;
  border-radius: 5px;
}
/* Navbar end*/

.hero {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #262626, #6c8cff);
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

.slider-container {
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}

.slide {
  min-width: 100%;
  display: none;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  /* flex-direction: column; */
  text-align: center;
  gap: 40px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.slide.active {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slider-pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 99999;
}
.slider-pagination button {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 19px;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet-active {
  /* background: linear-gradient(45deg, #ff7e5f, #feb47b) !important; */
  background-color: white !important;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  /* background: linear-gradient(45deg, #ff7e5f, #feb47b) !important; */
  background-color: white !important;

  opacity: 1;
}
.swiper-pagination {
  position: relative !important;
  margin-top: 15px !important;
}
.swiper {
  width: 85% !important;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%;
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

.prev:hover,
.next:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* .wpb_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 95%;
  margin: 0 auto;
  padding: 0 40px;
  position: absolute;
  top: 0;
  left: 0;
} */

.wpb-imageSlider {
  flex: 1;
  width: 85%;
}

.wpb-imageSlider img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.wpb_textSlider {
  flex: 1;
}

/* lazi olacaq start */
.hero h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.hero-btn {
  background: white;
  color: #2b4eff;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #eaf0ff;
}

.wpb_textSlider h1 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.wpb_textSlider span {
  font-size: 1rem;
  color: #fff;
  /* font-weight: bold; */
  line-height: 1.7;
  display: block;
}

.formLoginAndRegister {
  margin-top: 15px;
}
.loginWps,
.registerWps {
  background: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}
.loginWps a,
.registerWps a {
  color: #2b4eff;
  font-weight: bold;
  text-decoration: none;
}

/* center_Side */
.how-it-works__container {
  width: 85%;
  margin: 0 auto;
}

.how-it-works__title {
  margin-top: 15px;
  text-align: center;
}

.how-it-works__step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin: 0px 0;
}

.how-it-works__content {
  flex: 1;
}

.how-it-works__subtitle {
  font-size: 1.8rem;
  color: #00aeef;
  margin-bottom: 10px;
}

.how-it-works__text {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.how-it-works__image {
  flex: 1;
  max-width: 400px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.how-it-works__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* advantages start */
/* wpb cards grid start */

.wpbCardBaseDiv {
  background: linear-gradient(135deg, #262626, #6c8cff);
}

/* Parent container */
.wpbCard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin: 20px auto;
  padding: 20px 0px;
  width: 85%;
  max-width: 1200px; /* maksimum genişlik */
}

/* Kart wrapper */
.wpb_wrapperCard {
  display: flex;
  justify-content: center;
}

/* Kart özəyi */
.wpb_cards {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.wpb_cards:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.wpb_cards figure {
  margin-bottom: 20px;
  height: 120px;
}

.wpb_cards img {
  width: 100%;
  max-width: 120px;
  height: 100%;
  object-fit: scale-down;
}

.wpb_cards h1 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.wpb_cards span {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  font-family: "Poppins", sans-serif;
}

/* wpb cards grid end */

@media (max-width: 1024px) {
  .wpbCard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 3fr));
    gap: 9px;
    margin: 20px auto;
    padding: 10px 0px;
    width: 95%;
    max-width: 1200px;
  }
}
@media (max-width: 777px) {
  .wpbCard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 3fr));
    gap: 9px;
    margin: 20px auto;
    padding: 10px 0px;
    width: 95%;
    max-width: 1200px;
  }
}

/* advantages end */

/* Partner start */

.wpbCardPartner {
  width: 85%;
  margin: 0 auto;
}
.wpb-titlePartner {
  text-align: center;
  font-size: 24px;
  margin-top: 45px;
  color: #00aeef;
}
.wpb_cardsPartner figure {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 20px auto;
}

.wpb_cardsPartner figure div {
  width: 100%;
  max-width: 280px;
  height: 108px;
  object-fit: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  /* justify-self: center;   */
  background: #e2e2e2;
  border-radius: 10px;
  padding: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wpb_cardsPartner figure img:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Partner end */

/* contact start */

.contactPage {
  background: linear-gradient(135deg, #262626, #6c8cff);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 0px;
  font-family: "Poppins", sans-serif;
}

.contact-container {
  background: #fff;
  display: flex;
  gap: 50px;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  width: 85%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 50px 0px;
}

.contact_infoCards {
  margin-top: 15px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 30px 0px;
}

.info-icon i {
  font-size: 22px;
  color: #2b4eff; /* istəsən başqa rəng */
  background: #f0f4ff;
  padding: 10px;
  border-radius: 50%;
}

.info-text p:first-child {
  font-weight: 600;
  color: #4b5563;
  margin: 0;
  text-align: left;
}

.info-text p:last-child {
  margin: 0;
  color: #555;
  font-size: 15px;
  text-align: left;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  color: #444;
  margin-bottom: 15px;
}

.info-item i {
  font-size: 22px;
  color: #007bff;
}
.contact-info {
  align-items: center;
  width: 50%;
}

/* Sağ tərəf (Form) */
.contact-form {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea {
  border: 2px solid #ccc;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.1);
}

.contact-btn {
  /* background: linear-gradient(90deg, #007bff, #00c6ff); */
  background: linear-gradient(135deg, #262626, #6c8cff);

  color: white;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.4s ease, transform 0.3s ease;
}

/* Responsivlik */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    /* text-align: center; */
    gap: 30px;
    padding: 15px 15px;
    flex-direction: column-reverse;
    margin-top: 20px;
    width: 95%;
  }

  .contact-info {
    align-items: center;
    width: 100%;
  }

  .contact-form {
    width: 100%;
  }
}

/* contact end */

/* login start */

/* SECTION container */
.login-section {
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* min-height: calc(100vh - 80px); */
  background: radial-gradient(
      circle at 10% 10%,
      rgba(0, 118, 255, 0.06),
      transparent 10%
    ),
    linear-gradient(180deg, #fbfdff 0%, #f2f9ff 100%);
}

/* Center wrapper: controls max width (so single card won't fill whole screen) */
.login-wrap {
  display: grid;
  grid-template-columns: 1fr 420px; /* left info + right card */
  gap: 40px;
  width: min(92%, 1100px); /* was var(--max-container) */
  align-items: center;
}

/* Left info pane */
.login-info {
  padding: 30px;
  border-radius: 14px; /* was var(--radius) */
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.75)
  );
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  height: 100%;
}

.brand-icon {
  width: 140px;
  height: auto;
  display: block;
  margin-bottom: 18px;
}

.login-info h1 {
  margin: 0 0 10px 0;
  font-family: "Merriweather", serif;
  font-size: 2rem;
  color: #0f172a;
}

.login-info p {
  margin: 0 0 18px 0;
  color: #6b7280; /* was var(--muted) */
  line-height: 1.6;
}

/* Benefits list */
.benefits {
  margin: 0 0 18px 0;
  padding: 0;
  list-style: none;
}
.benefits li {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.4)
  );
  padding: 8px 12px;
  border-radius: 999px;
  color: #064e9a;
  font-weight: 600;
  font-size: 0.95rem;
  align-items: center;
  gap: 8px;
}

/* Info CTA */
.info-cta {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.btn-outline,
.btn-primaryLogin {
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
}
.btn-outline {
  background: transparent;
  color: #0077ff; /* was var(--accent) */
  border: 1.5px solid rgba(0, 119, 255, 0.18);
}
.btn-primaryLogin {
  /* background: linear-gradient(90deg, var(--accent), var(--accent-2)); */
  background-color: #0077ff;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 118, 255, 0.12);
  display: flex;
  justify-content: center;
}

/* LOGIN CARD (form) */
.login-card {
  background: #ffffff; /* was var(--card) */
  border-radius: 14px; /* was var(--radius) */
  padding: 30px;
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.07);
  width: 100%;
  max-width: 420px; /* crucial: single card won't full stretch */
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Head */
.login-card h2 {
  margin: 0;
  font-size: 1.4rem;
  color: #031026;
  letter-spacing: 0.2px;
}

/* form fields */
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-label {
  font-size: 0.85rem;
  color: #6b7280; /* was var(--muted) */
  font-weight: 600;
}

.login-card input[type="email"],
.login-card input[type="password"] {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(11, 23, 40, 0.06);
  background: linear-gradient(180deg, rgba(245, 249, 255, 1), #fff);
  outline: none;
  font-size: 0.98rem;
  transition: box-shadow 0.18s ease, transform 0.12s ease;
}
.login-card input:focus {
  box-shadow: 0 6px 20px rgba(0, 118, 255, 0.12);
  transform: translateY(-1px);
  border-color: rgba(0, 118, 255, 0.28);
}

/* row for checkbox + forgot */
.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280; /* was var(--muted) */
  font-size: 0.95rem;
}
.checkbox input {
  width: 16px;
  height: 16px;
  accent-color: #0077ff; /* was var(--accent) */
}

/* forgot link */
.forgot {
  color: #0077ff; /* was var(--accent) */
  text-decoration: none;
  font-size: 0.92rem;
}
.forgot:hover {
  text-decoration: underline;
}

/* submit */
.btn-block {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  background: linear-gradient(
    90deg,
    #0077ff,
    #00c6ff
  ); /* was var(--accent) / var(--accent-2) */
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 118, 255, 0.12);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn-block:active {
  transform: translateY(1px);
  box-shadow: 0 6px 18px rgba(0, 118, 255, 0.1);
}

/* OR divider */
.or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 6px 0 0 0;
}
.or::before,
.or::after {
  content: "";
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(2, 6, 23, 0.06),
    rgba(2, 6, 23, 0.02)
  );
  flex: 1;
}
.or span {
  font-size: 0.9rem;
  color: #6b7280; /* was var(--muted) */
  padding: 0 8px;
}

/* social buttons */
.social-login {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 6px;
}
.social {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: none;
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.05rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.04);
}
.social.fb {
  background: #1877f2;
  color: #fff;
}
.social.goog {
  background: #fff;
  color: #222;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.social.tg {
  background: #2aabee;
  color: #fff;
}

/* signup */
.signup {
  text-align: center;
  color: #6b7280; /* was var(--muted) */
  font-size: 0.95rem;
  margin-top: 6px;
}
.signup a {
  color: #0077ff; /* was var(--accent) */
  text-decoration: none;
  font-weight: 600;
}
.signup a:hover {
  text-decoration: underline;
}
/* login end */

/* register start */

/* 📦 Container */
.register-section {
  background: radial-gradient(
      circle at 10% 10%,
      rgba(0, 118, 255, 0.06),
      transparent 10%
    ),
    linear-gradient(180deg, #fbfdff 0%, #f2f9ff 100%);
  padding: 20px 0px;
}
.register-container {
  background: #fff;
  /* border-radius: 20px; */
  padding: 5px 50px;
  width: 400px;
  text-align: center;
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25); */
  animation: fadeIn 0.6s ease-in-out;
  margin: 0 auto;
}

.register-logo {
  width: 90px;
  margin-bottom: 15px;
}

.register-header h1 {
  font-size: 28px;
  color: #222;
  margin-bottom: 8px;
}

.register-header p {
  font-size: 14px;
  color: #777;
  margin-bottom: 25px;
}

/* ✏️ Input Fields */
.input-group {
  text-align: left;
  margin-bottom: 18px;
}

.input-group label {
  display: block;
  font-weight: 500;
  color: #444;
  margin-bottom: 6px;
  font-size: 14px;
}

.input-group i {
  color: #2b32b2;
  margin-right: 6px;
}

.input-group input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  transition: all 0.3s ease;
  font-size: 14px;
}

.input-group input:focus {
  border-color: #2b32b2;
  box-shadow: 0 0 8px rgba(43, 50, 178, 0.3);
  outline: none;
}

/* 🔘 Button */
.register-btn {
  width: 100%;
  padding: 14px;
  background-color: #2b4eff;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.register-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(90deg, #1488cc, #2b32b2);
  box-shadow: 0 6px 15px rgba(20, 136, 204, 0.4);
}

/* 🔗 Login link */
.login-link {
  margin-top: 25px;
  font-size: 14px;
  color: #555;
}

.login-link a {
  color: #1488cc;
  font-weight: 600;
  text-decoration: none;
}

.login-link a:hover {
  text-decoration: underline;
}

/* ✨ Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 📱 Responsive */
@media (max-width: 590px) {
  .register-section {
    padding: 0 0 !important;
  }
}
@media (max-width: 480px) {
  .register-section {
    padding: 0 0 !important;
  }
  .register-container {
    width: 90%;
    padding: 5px 25px;
  }
}

/* register end */

/* 404 start */

/* Section full height centering */
.error-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background-color: red;
}

/* Outer container to limit width */
.error-container {
  width: 100%;
  max-width: 1100px;
  padding: 18px;
}

/* Card with soft glass effect */
.error-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.85),
    rgba(255, 255, 255, 0.72)
  );
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(12, 15, 27, 0.12);
  backdrop-filter: blur(6px) saturate(120%);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

/* Left column: text */
.error-left {
  flex: 1 1 320px;
  min-width: 220px;
}

/* Big 404 number */
.error-code {
  font-size: 96px;
  line-height: 0.95;
  margin: 0 0 6px 0;
  font-weight: 800;
  letter-spacing: -2px;
  color: #4f46e5;
  text-shadow: 0 6px 24px rgba(79, 70, 229, 0.12);
}

/* Message */
.error-message {
  margin: 6px 0 18px 0;
  font-size: 18px;
  color: #6b7280;
}

/* Home link styled as button */
.home-link {
  display: inline-block;
  padding: 12px 18px;
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.18);
  transition: transform 0.14s ease, box-shadow 0.14s ease, opacity 0.14s ease;
}

/* hover/active effects */
.home-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.22);
  opacity: 0.98;
}
.home-link:active {
  transform: translateY(-1px) scale(0.995);
}

/* Right column: illustration */
.error-right {
  flex: 0 0 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.error-illustration {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.3, 1);
}

/* subtle float animation on hover the card */
.error-card:hover .error-illustration {
  transform: translateY(-8px) rotate(-1deg);
}

/* Decorative small text under the code */
.error-sub {
  margin-top: 12px;
  font-size: 13px;
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 900px) {
  .error-card {
    flex-direction: column-reverse;
    padding: 20px;
    gap: 18px;
    align-items: center;
    text-align: center;
  }

  .error-right {
    order: -1;
    width: 100%;
    max-width: 460px;
  }

  .error-left {
    min-width: 0;
  }

  .error-code {
    font-size: 72px;
  }

  .home-link {
    padding: 10px 16px;
  }
}

@media (max-width: 420px) {
  .error-code {
    font-size: 56px;
  }
  .error-illustration {
    max-width: 320px;
  }
  .error-section {
    padding: 18px;
  }
}

/* 404 end */

/* forget psw start */
/* Forget Password Page */
.forget_parol {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  min-height: 70vh;
  background: linear-gradient(135deg, #f5f7fa, #e4ecf7);
}

.forget-container {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.forget-container h2 {
  color: #2b4eff;
  margin-bottom: 10px;
  font-size: 24px;
}

.forget-container p {
  color: #555;
  font-size: 15px;
  margin-bottom: 25px;
}

.forget-form .form-group {
  text-align: left;
  margin-bottom: 20px;
}

.forget-form label {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
}

.forget-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

.forget-form input:focus {
  border-color: #2b4eff;
  box-shadow: 0 0 5px rgba(43, 78, 255, 0.3);
}

.btn-submit {
  width: 100%;
  padding: 12px;
  background: #2b4eff;
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #1a36cc;
}

.back-login {
  display: inline-block;
  margin-top: 15px;
  color: #2b4eff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.back-login:hover {
  color: #1a36cc;
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .forget-container {
    padding: 30px 20px;
  }

  .forget-container h2 {
    font-size: 20px;
  }

  .btn-submit {
    font-size: 15px;
  }
}

/* forget psw end */

/* footer start */

/* ===== Footer Dizayn ===== */
.footer {
  background: #262626;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
  color: #fff;
  padding: 60px 80px 30px;
  /* margin-top: 100px; */
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
}

.footer-col h4 {
  font-size: 18px;
  color: #0077ff;
  margin-bottom: 18px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #0077ff;
  position: absolute;
  bottom: -6px;
  left: 0;
}

.footer-col ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.footer-col ul li {
  margin: 8px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c4c4c4;
  transition: 0.3s;
}

.footer-col ul li a {
  color: #c4c4c4;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover,
.footer-col ul li:hover {
  color: #0077ff;
  transform: translateX(3px);
}

/* Logo və Sosial Media */
.footer-logo {
  width: 200px;
  margin-bottom: 12px;
}

.logo-col p {
  font-size: 14px;
  color: #c4c4c4;
  line-height: 1.6;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}
.social-links a {
  display: inline-block;
  background: #0077ff;
  color: #fff;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  border-radius: 50%;
  margin-right: 8px;
  transition: 0.3s ease;
}

.social-links a:hover {
  background: #005fcc;
  transform: translateY(-2px);
}

/* Alt Hissə */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 14px;
  /* color: #666; */
  color: #c4c4c4;
}

/* footer end */
