@charset "UTF-8";
.text-main-color {
  color: #409699;
}

.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.row-gap-24 {
  row-gap: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--foreground);
  font-size: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: black;
}
a:hover {
  color: black;
}

button {
  border: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}

/* ── Utilities ── */
.text-gradient {
  background: var(--text-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Orbs ── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: pulse-glow 6s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.float {
  animation: float 4s ease-in-out infinite;
}

/* ── Navbar ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s;
  padding: 1.25rem 0;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(210, 220, 230, 0.6);
  box-shadow: var(--shadow-soft);
  padding: 0.6rem 0;
}

.nav-link-custom {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.3s;
}

.nav-link-custom:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

#navbar.scrolled .nav-link-custom {
  color: var(--muted);
}

#navbar.scrolled .nav-link-custom:hover {
  color: var(--primary);
  background: var(--primary-light);
}

#navbar.scrolled .brand-text {
  background: var(--text-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.btn-nav-login {
  font-size: 0.85rem;
  padding: 0.4rem 1.1rem;
  border-radius: 2rem;
  border: none;
  background: transparent;
  color: #fff !important;
  font-family: var(--font-heading);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.btn-nav-login:hover {
  background: rgba(255, 255, 255, 0.12);
}

#navbar.scrolled .btn-nav-login {
  color: var(--foreground);
}

#navbar.scrolled .btn-nav-login:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.btn-nav-register {
  font-size: 0.85rem;
  padding: 0.45rem 1.2rem;
  border-radius: 2rem;
  border: none;
  background: #fff;
  color: var(--foreground);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s;
  box-shadow: var(--shadow-glow);
}

.btn-nav-register:hover {
  opacity: 0.9;
}

#navbar.scrolled .btn-nav-register {
  background: var(--primary-grad);
  color: #fff;
}

.mobile-menu {
  display: none;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  border: 1px solid var(--border);
  margin: 0.5rem 1rem 0;
  overflow: hidden;
  animation: slideDown 0.3s ease;
}

.mobile-menu.open {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mobile-link {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  border-radius: 0.75rem;
  transition: all 0.25s;
}

.mobile-link:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.hamburger-icon {
  cursor: pointer;
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s;
}

#navbar.scrolled .hamburger-icon {
  color: var(--foreground);
}

@media (max-width: 991.98px) {
  .loginPage .login_box {
    width: 100% !important;
  }
}
@media (max-width: 767.98px) {
  .loginPage .login_box {
    width: 80% !important;
  }
  .loginPage .login_box .image_holder img {
    border-radius: 15px 15px 0px 0 !important;
  }
}
.loginPage {
  width: 100%;
  min-height: calc(100vh - 155px - 463.38);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loginPage .login_box {
  min-height: 380px;
  background-color: white;
  border-radius: 15px;
  width: 70%;
  margin: auto;
}
.loginPage .login_box .image_holder {
  width: 100%;
  height: 100%;
}
.loginPage .login_box .image_holder img {
  width: 100%;
  height: 100%;
  border-radius: 0px 15px 15px 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.loginPage .login_box .login-form {
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.loginPage .login_box .login-form .login_content {
  margin-bottom: 20px;
}
.loginPage .login_box .login-form .login_content .title {
  margin-bottom: 1rem;
  font-size: 16px;
  font-weight: 600;
}
.loginPage .login_box .login-form .login_content .inp_holder {
  margin-bottom: 15px;
}
.loginPage .login_box .login-form .login_content .inp_holder .login-label {
  margin-bottom: 6px;
  font-size: 11px;
  color: #959595;
  font-weight: 600;
}
.loginPage .login_box .login-form .login_content .inp_holder .login-inp {
  padding: 5px 13px !important;
  border-radius: 6px;
}
.loginPage .login_box .login-form .login_content .btn_holder .login-btn {
  transition: background-color 0.4s;
  width: 100%;
  color: white;
  text-align: center;
  margin-top: 15px;
  padding: 0.5rem 1rem;
  line-height: 1.25rem;
  font-weight: 500;
  border-radius: 0.5rem;
  background-color: #01b3e4;
}
.loginPage .login_box .login-form .login_content .btn_holder .login-btn:hover {
  background-color: #01abda;
}

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1600&q=80&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.hero-color-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 1;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 2;
}

.hero-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
  z-index: 2;
}

#hero > .orb {
  z-index: 3;
}

#hero > .container {
  z-index: 4;
}

#hero > .bottom-fade {
  z-index: 4;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.2rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  margin-bottom: 2rem;
}

.hero-h1 {
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-h1 .accent {
  background: linear-gradient(to left, var(--primary-glow), var(--cyan), var(--primary-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 2rem;
  background: #fff;
  color: var(--foreground);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-glow);
  transition: opacity 0.3s, transform 0.3s;
}

.btn-primary-hero:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: var(--foreground);
}

.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 2rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline-hero:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.stats-bar {
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  text-align: center;
}

.stat-item:not(:last-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-value {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  font-family: var(--font-heading);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.25rem;
}

.bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
}

/* ── Services ── */
#services {
  padding: 7rem 0;
  position: relative;
  background: var(--bg);
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elegant);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-elegant);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--foreground);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.more-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
}

.service-card:hover .more-link {
  opacity: 1;
}

/* ── About ── */
#about {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.about-visual {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  border-radius: 2rem;
  background: var(--hero-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.about-visual-text {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
}

.about-visual-text .big {
  font-size: 5rem;
  font-weight: 900;
  font-family: var(--font-heading);
  line-height: 1;
}

.about-visual-text .small {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.floating-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(210, 220, 230, 0.6);
  border-radius: 1rem;
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-elegant);
}

.floating-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--primary-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
}

.float-val {
  font-size: 1.4rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--foreground);
  line-height: 1;
}

.float-lbl {
  font-size: 0.7rem;
  color: var(--muted);
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  transition: background 0.25s;
}

.feature-row:hover {
  background: var(--primary-light);
}

.feature-check {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: var(--primary-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.feature-row span {
  font-weight: 500;
  color: var(--foreground);
  font-size: 0.95rem;
}

/* ── Testimonials / Swiper ── */
#testimonials {
  padding: 7rem 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.swiper-testimonials {
  padding: 1rem 0.5rem 4rem !important;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  height: 100%;
  position: relative;
  transition: transform 0.4s, box-shadow 0.4s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elegant);
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 2.5rem;
  color: var(--primary);
  opacity: 0.1;
  transition: opacity 0.3s;
  line-height: 1;
}

.testimonial-card:hover .quote-icon {
  opacity: 0.2;
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--foreground);
  margin-bottom: 1.75rem;
}

.avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--primary-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-elegant);
}

.reviewer-name {
  font-weight: 700;
  color: var(--foreground);
  font-size: 0.95rem;
}

.reviewer-role {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Swiper overrides */
.swiper-pagination-bullet {
  width: 0.6rem;
  height: 0.6rem;
  background: var(--border);
  opacity: 1;
  transition: all 0.3s;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
  width: 1.8rem;
  border-radius: 1rem;
}

.swiper-btn {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--card-bg);
  color: var(--foreground);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  box-shadow: 0 4px 16px hsla(204, 69%, 46%, 0.1);
  flex-shrink: 0;
}

.swiper-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

/* ── FAQ ── */
#faq {
  padding: 7rem 0;
  position: relative;
  background: var(--bg);
}

.faq-item {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 1.25rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.faq-item.open {
  border-color: hsla(204, 69%, 46%, 0.35);
  box-shadow: 0 4px 24px hsla(204, 69%, 46%, 0.08);
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  text-align: right;
  cursor: pointer;
  transition: color 0.25s;
}

.faq-item.open .faq-btn {
  color: var(--primary);
}

.faq-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.3s, transform 0.4s;
}

.faq-item.open .faq-icon {
  background: var(--primary-grad);
  color: #fff;
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
  padding: 0 1.6rem;
}

.faq-body.open {
  max-height: 300px;
  padding-bottom: 1.4rem;
}

.faq-body p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

/* ── CTA ── */
#cta {
  padding: 5rem 0;
}

.cta-box {
  background: var(--hero-grad);
  border-radius: 2rem;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.6;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.78rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 1.8rem;
}

.cta-h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.cta-p {
  color: rgba(255, 255, 255, 0.5);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: 2rem;
  background: #fff;
  color: var(--foreground);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s, transform 0.3s;
}

.btn-cta:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  color: var(--foreground);
}

/* ── Contact ── */
#contact {
  padding: 7rem 0;
  position: relative;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  transition: transform 0.35s, box-shadow 0.35s;
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-elegant);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: var(--primary-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-elegant);
}

.contact-label {
  font-size: 0.78rem;
  color: var(--muted);
}

.contact-value {
  font-weight: 600;
  color: var(--foreground);
}

.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 1.75rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}

.form-control-custom {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--foreground);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(204, 69%, 46%, 0.12);
}

.form-control-custom::-moz-placeholder {
  color: var(--muted);
  font-family: var(--font-body);
}

.form-control-custom::placeholder {
  color: var(--muted);
  font-family: var(--font-body);
}

textarea.form-control-custom {
  resize: none;
}

.btn-submit {
  width: 100%;
  padding: 0.9rem;
  border-radius: 0.75rem;
  background: var(--primary-grad);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-elegant);
  transition: opacity 0.3s, transform 0.3s;
}

.btn-submit:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .floating-card {
    display: none;
  }
  .stats-bar {
    margin-top: 3rem;
  }
  .hero-h1 {
    font-size: 2.4rem;
  }
  .hero-bg-img {
    background-attachment: scroll;
  }
}
.btn-main-sm {
  padding: 0.3rem 0.7rem;
  transition: 300ms;
  color: #fff;
  background: #409699;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  white-space: nowrap;
  cursor: pointer;
  border-radius: 4px;
  border: none;
  font-size: 13px;
  outline: none;
  border: 1px solid #409699;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
.btn-main-sm::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  transition: 300ms;
  height: 100%;
  background-color: white;
  z-index: -1;
}
.btn-main-sm:hover {
  color: #409699;
  border: 1px solid #409699;
}
.btn-main-sm:hover::before {
  left: 0;
}

.dropdown-hover {
  position: relative;
  color: white;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  z-index: 1001;
  cursor: pointer;
}
.dropdown-hover::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 7px;
  left: 0;
  top: 100%;
}
.dropdown-hover:hover .listis-item {
  display: block;
}
.dropdown-hover .icon-drop {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #9c9c9c;
}
.dropdown-hover .icon-drop .icon {
  font-size: 16px;
}
.dropdown-hover .text {
  margin: 0;
  font-size: 13px;
  text-align: center;
}
.dropdown-hover .listis-item {
  position: absolute;
  left: 0;
  z-index: 1000;
  top: calc(100% + 7px);
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  min-width: 100%;
  background-color: #313131;
  overflow-y: auto;
}
.dropdown-hover .listis-item::-webkit-scrollbar {
  display: none;
}
.dropdown-hover .listis-item {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.dropdown-hover .listis-item {
  display: none;
}
.dropdown-hover .listis-item .item-drop a {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 10px;
  width: 100%;
  white-space: nowrap;
}
.dropdown-hover .listis-item .item-drop a:hover {
  background: #4e4e4e;
}
.dropdown-hover .listis-item .item-drop a .icon-drop {
  width: 19px;
}
.dropdown-hover .listis-item .item-drop a .text {
  size: 19px;
  color: white;
}

.badge-count {
  background-color: orangered;
  font-size: 12px;
  height: 17px;
  width: 17px;
  border-radius: 5px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-light {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 5px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  color: #2e5789;
  background-color: #d2e6ff;
}
.btn-light .icon {
  width: 18px;
  height: auto;
}
.btn-light.btn-light-green {
  color: #33b469;
  background-color: #eafff3;
}
.btn-light.btn-light-orange {
  color: #ff731d;
  background-color: #fff1e8;
}
.btn-light.btn-light-red {
  color: #c80f0f;
  background-color: #ebc8c8;
}
.btn-light.btn-light-yellow {
  color: #ffc107;
  background-color: #ffecb4;
}
.btn-light.btn-light-purple {
  color: #8d1ee5;
  background-color: #f2e7fd;
}
.btn-light.sm-border {
  border-radius: 4px;
}

.btn-gradient-gold {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.35rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  white-space: nowrap;
  font-weight: bold;
  font-size: 14px;
  background: linear-gradient(90deg, #dfaf37, #ffcc80);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 11px 0px;
  color: white;
}
.btn-gradient-gold:focus {
  box-shadow: 0 0 0 0.25rem rgba(253, 157, 13, 0.3098039216) !important;
}
.btn-gradient-gold:hover {
  color: white;
}
.btn-gradient-gold:hover svg {
  animation-play-state: running;
}
.btn-gradient-gold i,
.btn-gradient-gold svg {
  font-size: 15px;
  animation: move-arrow 0.7s linear infinite paused;
}

@keyframes move-arrow {
  0% {
    transform: translateX(4px);
  }
  100% {
    transform: translateX(-4px);
  }
}
.btn-icon-cr {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0.35rem 1.5rem;
  border-radius: 50px;
  white-space: nowrap;
  font-weight: bold;
  color: #8b8b8b;
  background-color: #fff;
  transition: 0.3s;
  box-shadow: 0px 4px 25px 0 rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.btn-icon-cr .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 14px;
  color: #409699;
  background-color: rgba(1, 179, 228, 0.07);
}
.btn-icon-cr .icon img {
  width: 14px;
  filter: brightness(0) saturate(100%) invert(62%) sepia(69%) saturate(4137%) hue-rotate(157deg) brightness(98%) contrast(99%);
}
.btn-icon-cr:hover {
  color: #595656;
}

.btn-nav {
  color: #409699 !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-style {
  color: #fff;
  background: linear-gradient(253deg, #5ac99d, #4cad9b 45%, #4aa89b 35%, #4aa89b 35%, #4aa89b 35%, #4aa89b 35%, #4aa89b 35%, #41979a);
  border-radius: 28px;
  box-shadow: 0 3px 10px 0 rgba(18, 45, 46, 0.1);
  padding: 11px 20px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 300ms ease-in-out;
}
.btn-style:hover {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  transform: translateY(-5px);
  color: #fff;
}

.btn-lang {
  padding: 5px;
  border: 1px solid #333;
  border-radius: 50%;
  font-weight: 700;
  width: 44px;
  height: 44px;
  display: flex;
  font-size: 16px;
  align-items: center;
  justify-content: center;
  transition: 3000ms;
}
.btn-lang:hover {
  text-decoration: underline;
}

.main-heading {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 1.5rem;
}

.small-heading {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 5px;
  font-weight: bold;
}

.small-label {
  color: #6b7280;
  font-size: 12px;
  margin-bottom: 2px;
}

.menu-title-pro {
  font-size: 18px;
  font-weight: 700;
  color: #263238;
  position: relative;
  margin-bottom: 30px;
}
.menu-title-pro::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -20px;
  width: 50px;
  height: 4px;
  border-radius: 3px;
  background: linear-gradient(253deg, #5ac99d, #4cad9b 45%, #4aa89b 35%, #4aa89b 35%, #4aa89b 35%, #4aa89b 35%, #4aa89b 35%, #41979a);
}

.boxes-info .box-info {
  background-color: white;
  padding: 25px 15px;
  text-align: end;
  overflow: hidden;
  border-radius: 0.375rem;
  position: relative;
  box-shadow: 0 0 6px 0 #d3d3d3;
  transition: 300ms;
}
.boxes-info .box-info:hover {
  box-shadow: 0 0 6px 0 #aeaaaa;
}
.boxes-info .box-info.blue .bg-icon {
  color: #5b8af0;
}
.boxes-info .box-info.green .bg-icon {
  color: #409699;
}
.boxes-info .box-info.pur .bg-icon {
  color: #7b74eb;
}
.boxes-info .box-info.red .bg-icon {
  color: #de5f56;
}
.boxes-info .box-info .num {
  font-size: 25px;
}
.boxes-info .box-info .text {
  font-size: 16px;
  color: #6b7280;
}
.boxes-info .box-info .bg-icon {
  position: absolute;
  right: -3%;
  bottom: 0;
  font-size: 60px;
}
.boxes-info.boxes-bg-color .box-info {
  color: white;
}
.boxes-info.boxes-bg-color .box-info .text {
  color: white;
}
.boxes-info.boxes-bg-color .box-info .bg-icon {
  color: white;
}
.boxes-info.boxes-bg-color .box-info.blue {
  background-color: #5b8af0;
}
.boxes-info.boxes-bg-color .box-info.green {
  background-color: #409699;
}
.boxes-info.boxes-bg-color .box-info.pur {
  background-color: #7b74eb;
}
.boxes-info.boxes-bg-color .box-info.red {
  background-color: #de5f56;
}

.main-table {
  width: 100%;
  border-radius: 7px;
  border: none !important;
  border: 1px solid #ddd !important;
}
.main-table * {
  border: none !important;
}
.main-table tr {
  border: 1px solid #ddd !important;
}
.main-table tr th {
  background-color: #f9fafb;
  color: #6b7280;
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
  padding: 10px;
}
.main-table tr td {
  background-color: white;
  font-size: 14px;
  padding: 10px;
}

.card-side {
  box-shadow: -13px 20px 20px 0 rgba(0, 0, 0, 0.0392156863);
  background: #ffffff;
  border-radius: 5px;
  border: 0;
  margin-bottom: 1rem;
}
.card-side .user-avatar img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.card-side .user-name {
  margin: 0 0 0.5rem 0;
}
.card-side .user-email {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 400;
  color: #9fa8b9;
}
.card-side .card-slide {
  box-shadow: 0px 8px 10px 0 rgba(0, 0, 0, 0.0392156863) !important;
  padding: 1.5rem 1rem;
  text-align: center;
}
.card-side .card-slide .btn-icon {
  color: #666;
}
.card-side .card-slide .btn-icon:hover {
  color: #000;
}
.card-side .card-slide .btn-icon .icon {
  border: none !important;
}
.card-side .card-slide .btn-icon .icon svg, .card-side .card-slide .btn-icon .icon i {
  width: 20px;
}

.landing-section {
  height: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.landing-section::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: hsla(193, 99%, 45%, 0.5);
}
.landing-section .img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-side {
  padding: 20px;
  border: 1px solid #f2f2f2;
  border-radius: 8px;
  background-color: #fff;
}
.content-side .header {
  font-weight: 500;
  font-size: 24px;
  line-height: 41px;
  text-align: right;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.content-side .between-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.content-side .blocks-tickets .box-ticket {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  border: 1px solid #e3e3e3;
  padding: 15px;
  border-radius: 3px;
  background-color: #fff;
}
.content-side .blocks-tickets .box-ticket .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 7px;
}
.content-side .blocks-tickets .box-ticket .info .date {
  color: #409699;
  font-weight: 700;
  font-size: 13px;
}
.content-side .blocks-tickets .box-ticket .info .content {
  color: rgb(102, 102, 102);
  font-size: 14px;
  margin-bottom: 0;
  line-height: 22.4px;
  font-weight: 400;
}
.content-side .blocks-tickets .box-ticket .options {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.main-select {
  border-radius: 4px;
  padding: 0.2rem;
  font-size: 13px;
  transition: 300ms;
  border: 1px solid #ddd;
}
.main-select:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  outline: none;
}

/* ── Footer ── */
footer {
  background: var(--hero-grad);
  position: relative;
  overflow: hidden;
}

.footer-body {
  padding: 4rem 0 2rem;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}

.footer-col-title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.footer-link {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: color 0.25s;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 0;
  background: rgba(0, 0, 0, 0.25);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  direction: rtl;
}

.footer-credit-logo {
  width: 22px;
  height: auto;
  opacity: 0.7;
}/*# sourceMappingURL=main.css.map */