/* ===================================================
   Zenith Solutions Limited
   Enterprise Design System
   Version: 3.0
=================================================== */

/* ===================================================
   BASE
=================================================== */

/* ==========================================
   RESET
========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}
/* ==========================================
   COLORS
========================================== */

:root {
  --primary: #262871;
  --secondary: #6c385e;

  --white: #ffffff;

  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
}

/* ==========================================
   BORDER RADIUS
========================================== */

:root {
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
}

/* ==========================================
   SHADOW
========================================== */

:root {
  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);

  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);

  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* ==========================================
   TRANSITION
========================================== */

:root {
  --transition: 0.35s ease;
}
--gradient: linear-gradient(135deg, #262871, #45317d, #6c385e);
body {
  background: var(--light);

  color: var(--dark);

  overflow-x: hidden;
}

body::before {
  content: "";

  position: fixed;

  width: 700px;

  height: 700px;

  background: rgba(38, 40, 113, 0.08);

  border-radius: 50%;

  top: -280px;

  right: -250px;

  filter: blur(120px);

  z-index: -10;
}

body::after {
  content: "";

  position: fixed;

  width: 600px;

  height: 600px;

  background: rgba(108, 56, 94, 0.08);

  border-radius: 50%;

  left: -220px;

  bottom: -250px;

  filter: blur(120px);

  z-index: -10;
}
/* ==========================================
   TYPOGRAPHY
========================================== */

body {
  font-family: "Poppins", sans-serif;

  background: var(--gray-50);

  color: var(--gray-800);

  line-height: 1.6;
}

h1 {
  font-size: 64px;

  font-weight: 800;
}

h2 {
  font-size: 48px;

  font-weight: 700;
}

h3 {
  font-size: 32px;

  font-weight: 700;
}

h4 {
  font-size: 24px;

  font-weight: 600;
}

p {
  font-size: 18px;

  color: var(--gray-600);
}

/* ===================================================
   COMPONENTS
=================================================== */

/* ==========================================
   ENTERPRISE BUTTON SYSTEM
========================================== */

.btn-zs {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  text-align: center;

  padding: 14px 32px;

  border: none;

  border-radius: 999px;

  font-size: 16px;

  font-weight: 600;

  line-height: 1.2;

  cursor: pointer;

  transition: var(--transition);

  text-decoration: none;

  white-space: nowrap;
}

/* ========================= */

.btn-primary {
  background: var(--gradient);

  color: white;

  border: none;
}

.btn-primary:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 40px rgba(38, 40, 113, 0.25);
}

/* ========================= */

.btn-secondary {
  background: var(--secondary);

  color: white;
}

.btn-secondary:hover {
  transform: translateY(-3px);

  box-shadow: var(--shadow-md);
}

/* ========================= */

.btn-outline {
  border: 2px solid var(--primary);

  color: var(--primary);

  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);

  color: white;
}

/* ========================= */

.btn-light {
  background: white;

  color: var(--primary);
}

.btn-light:hover {
  transform: translateY(-3px);

  box-shadow: var(--shadow-md);
}
/* ==========================================
   ENTERPRISE CARD SYSTEM
========================================== */

.card-zs {
  background: var(--white);

  border-radius: var(--radius-lg);

  padding: 32px;

  box-shadow: var(--shadow-sm);

  transition: var(--transition);

  height: 100%;
}

.card-zs:hover {
  transform: translateY(-8px);

  box-shadow: var(--shadow-lg);
}

.card-center {
  text-align: center;
}

.card-icon {
  width: 80px;

  height: 80px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto 24px;

  border-radius: 50%;

  background: rgba(38, 40, 113, 0.08);

  color: var(--primary);

  font-size: 34px;
}

.card-title {
  font-size: 28px;

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 16px;
}

.card-text {
  font-size: 17px;

  line-height: 1.8;

  color: var(--gray-600);
}

.card-link {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin-top: 24px;

  font-weight: 600;

  color: var(--primary);

  text-decoration: none;

  transition: var(--transition);
}

.card-link:hover {
  gap: 14px;
}
.glass-card {
  background: rgba(255, 255, 255, 0.65);

  backdrop-filter: blur(18px);

  border-radius: 24px;

  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.floating-card {
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.floating-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}
/* ==========================================
   ENTERPRISE FORM SYSTEM
========================================== */

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;

  margin-bottom: 10px;

  font-size: 16px;

  font-weight: 600;

  color: var(--gray-700);
}

.form-control {
  width: 100%;

  padding: 14px 18px;

  border: 1px solid var(--gray-300);

  border-radius: var(--radius-md);

  background: var(--white);

  font-size: 16px;

  transition: var(--transition);

  outline: none;
}

.form-control:focus {
  border-color: var(--primary);

  box-shadow: 0 0 0 4px rgba(38, 40, 113, 0.12);
}

textarea.form-control {
  min-height: 150px;

  resize: vertical;
}

select.form-control {
  cursor: pointer;
}

.form-error {
  font-size: 14px;

  color: #dc2626;

  margin-top: 6px;
}

.form-success {
  font-size: 14px;

  color: #16a34a;

  margin-top: 6px;
}
/* ==========================================
   ENTERPRISE LAYOUT SYSTEM
========================================== */

/* Container */

.container-zs {
  max-width: 1280px;

  margin: auto;

  padding-left: 24px;

  padding-right: 24px;
}

/* Section */

.section {
  padding: 120px 0;
}

/* Section Header */

.section-header {
  text-align: center;

  margin-bottom: 80px;
}

.section-title {
  font-size: 48px;

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 20px;
}

.section-subtitle {
  max-width: 760px;

  margin: auto;

  font-size: 18px;

  line-height: 1.9;

  color: var(--gray-600);
}

/* Grid */

.grid-2 {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 32px;
}

.grid-3 {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 32px;
}

.grid-4 {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 32px;
}

/* Responsive */

@media (max-width: 992px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 36px;
  }
}
/* ==========================================
   ENTERPRISE NAVBAR
========================================== */

.site-navbar {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 9999;

  backdrop-filter: blur(20px);

  background: rgba(255, 255, 255, 0.82);

  border-bottom: 1px solid rgba(255, 255, 255, 0.35);

  transition: var(--transition);
}

.brand-title {
  font-size: 24px;

  font-weight: 700;

  color: var(--primary);

  line-height: 1.1;
}

.brand-tag {
  font-size: 12px;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: var(--secondary);
}

.nav-link {
  position: relative;

  font-weight: 500;

  transition: 0.3s;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -6px;

  width: 0;

  height: 2px;

  background: var(--gradient);

  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

/* Sticky Effect */

.site-navbar.scrolled {
  box-shadow: var(--shadow-md);

  background: rgba(255, 255, 255, 0.95);
}
/* ==========================================
   ENTERPRISE FOOTER
========================================== */

.footer-zs {
  background: #081229;

  color: #ffffff;
}

.footer-title {
  font-size: 24px;

  font-weight: 700;

  margin-bottom: 20px;

  color: #ffffff;
}

.footer-heading {
  font-size: 20px;

  font-weight: 600;

  margin-bottom: 20px;

  color: #ffffff;
}

.footer-text {
  color: #94a3b8;

  line-height: 1.8;
}

.footer-links {
  list-style: none;

  padding: 0;

  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;

  text-decoration: none;

  transition: var(--transition);
}

.footer-links a:hover {
  color: #ffffff;

  padding-left: 8px;
}

.footer-social {
  display: flex;

  gap: 16px;

  margin-top: 24px;
}

.footer-social a {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 42px;

  height: 42px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  color: #ffffff;

  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);

  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);

  margin-top: 48px;

  padding-top: 24px;

  text-align: center;

  color: #94a3b8;

  font-size: 15px;
}
/* ==========================================
   ENTERPRISE HERO
========================================== */

.hero {
  min-height: 100vh;

  display: flex;

  align-items: center;

  padding-top: 100px;

  position: relative;
}

.hero-subtitle {
  font-size: 15px;

  font-weight: 600;

  letter-spacing: 4px;

  text-transform: uppercase;

  color: var(--secondary);
}

.hero-title {
  font-size: 4.2rem;

  font-weight: 800;

  line-height: 1.15;

  color: var(--primary);
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.hero-text {
  font-size: 18px;

  line-height: 1.9;

  color: var(--gray-600);

  max-width: 680px;
}

.hero-buttons {
  display: flex;

  flex-wrap: wrap;

  gap: 20px;

  margin-top: 40px;
}

@media (max-width: 992px) {
  .hero {
    text-align: center;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-buttons {
    justify-content: center;
  }
}
/* ==========================================
   ENTERPRISE SECTION SYSTEM
========================================== */

/* Section */

.section {
  padding: 120px 0;
}

.section-light {
  background: #ffffff;
}

.section-gray {
  background: var(--gray-50);
}

.section-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));

  color: #ffffff;
}

/* Header */

.section-header {
  text-align: center;

  margin-bottom: 70px;
}

.section-subtitle {
  display: inline-block;

  font-size: 14px;

  font-weight: 600;

  letter-spacing: 4px;

  text-transform: uppercase;

  color: var(--secondary);

  margin-bottom: 18px;
}

.section-title {
  font-size: 48px;

  font-weight: 700;

  line-height: 1.2;

  color: var(--primary);

  margin-bottom: 20px;
}

.section-description {
  max-width: 760px;

  margin: 0 auto;

  font-size: 18px;

  line-height: 1.9;

  color: var(--gray-600);
}

/* Alignment */

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/* Responsive */

@media (max-width: 992px) {
  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 36px;
  }

  .section-description {
    font-size: 16px;
  }
}
/* ==========================================
   ENTERPRISE STATISTICS
========================================== */

.stats-section {
  padding: 100px 0;

  background: linear-gradient(135deg, var(--primary), var(--secondary));

  color: #ffffff;
}

.stats-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 40px;
}

.stat-card {
  text-align: center;

  padding: 20px;
}

.stat-number {
  font-size: 60px;

  font-weight: 800;

  line-height: 1;

  margin-bottom: 15px;

  color: #ffffff;
}

.stat-title {
  font-size: 18px;

  font-weight: 500;

  opacity: 0.95;
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 30px;
  }

  .stat-number {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================
   ENTERPRISE CTA
========================================== */

.cta-section {
  padding: 120px 0;

  background: linear-gradient(135deg, var(--primary), var(--secondary));

  color: #ffffff;

  text-align: center;
}

.cta-container {
  max-width: 900px;

  margin: 0 auto;

  padding: 0 24px;
}

.cta-title {
  font-size: 52px;

  font-weight: 800;

  line-height: 1.2;

  margin-bottom: 24px;

  color: #ffffff;
}

.cta-description {
  font-size: 20px;

  line-height: 1.9;

  opacity: 0.95;

  margin-bottom: 50px;
}

.cta-buttons {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 20px;
}

@media (max-width: 992px) {
  .cta-section {
    padding: 90px 0;
  }

  .cta-title {
    font-size: 38px;
  }

  .cta-description {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .cta-title {
    font-size: 30px;
  }
}
/* ==========================================
   ENTERPRISE TIMELINE
========================================== */

.timeline {
  position: relative;

  max-width: 1100px;

  margin: 0 auto;

  padding: 20px 0;
}

.timeline::before {
  content: "";

  position: absolute;

  left: 50%;

  top: 0;

  bottom: 0;

  width: 4px;

  background: var(--primary);

  transform: translateX(-50%);
}

.timeline-item {
  position: relative;

  width: 50%;

  padding: 20px 50px;

  margin-bottom: 50px;
}

.timeline-item:nth-child(odd) {
  left: 0;

  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-content {
  background: #ffffff;

  padding: 30px;

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-md);

  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateY(-6px);

  box-shadow: var(--shadow-lg);
}

.timeline-year {
  display: inline-block;

  padding: 8px 18px;

  border-radius: 999px;

  background: var(--primary);

  color: #ffffff;

  font-weight: 700;

  margin-bottom: 15px;
}

.timeline-title {
  font-size: 24px;

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 12px;
}

.timeline-text {
  font-size: 17px;

  line-height: 1.8;

  color: var(--gray-600);
}

.timeline-dot {
  position: absolute;

  top: 45px;

  width: 18px;

  height: 18px;

  background: var(--secondary);

  border: 4px solid #ffffff;

  border-radius: 50%;

  box-shadow: 0 0 0 4px var(--primary);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -9px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -9px;
}

@media (max-width: 992px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;

    left: 0 !important;

    padding: 20px 20px 20px 60px;

    text-align: left !important;
  }

  .timeline-dot {
    left: 11px !important;

    right: auto !important;
  }
}
/* ==========================================
   ENTERPRISE FAQ
========================================== */

.faq {
  max-width: 900px;

  margin: 0 auto;
}

.faq-item {
  background: #ffffff;

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-sm);

  margin-bottom: 20px;

  overflow: hidden;

  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 24px 30px;

  cursor: pointer;

  font-size: 20px;

  font-weight: 600;

  color: var(--primary);
}

.faq-question i {
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;

  padding: 0 30px 25px;

  font-size: 17px;

  line-height: 1.8;

  color: var(--gray-600);
}

.faq-item.active .faq-answer {
  display: block;
}

/* ===================================================
   PAGES
=================================================== */

/* ==========================================
   HOME PAGE
========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f8fafc;
  color: #0f172a;
  overflow-x: hidden;
}

:root {
  --primary: #262871;

  --secondary: #6c385e;

  --light: #f8fafc;

  --dark: #0f172a;

  --gray: #64748b;

  --gradient: linear-gradient(135deg, #262871, #45317d, #6c385e);
}

body::before {
  content: "";

  position: fixed;

  width: 700px;

  height: 700px;

  background: rgba(38, 40, 113, 0.08);

  border-radius: 50%;

  top: -280px;

  right: -250px;

  filter: blur(120px);

  z-index: -10;
}

body::after {
  content: "";

  position: fixed;

  width: 600px;

  height: 600px;

  background: rgba(108, 56, 94, 0.08);

  border-radius: 50%;

  left: -220px;

  bottom: -250px;

  filter: blur(120px);

  z-index: -10;
}

.navbar {
  position: fixed;

  width: 100%;

  top: 0;

  z-index: 9999;

  backdrop-filter: blur(20px);

  background: rgba(255, 255, 255, 0.82);

  border-bottom: 1px solid rgba(255, 255, 255, 0.35);

  transition: 0.35s;
}

.brand-title {
  font-size: 24px;

  font-weight: 700;

  color: var(--primary);

  line-height: 1.1;
}

.brand-tag {
  font-size: 12px;

  color: var(--secondary);

  letter-spacing: 2px;

  text-transform: uppercase;
}

.nav-link {
  position: relative;

  font-weight: 500;

  transition: 0.3s;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: "";

  position: absolute;

  width: 0;

  height: 2px;

  left: 0;

  bottom: -6px;

  background: var(--gradient);

  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-primary-custom {
  background: var(--gradient);

  color: white;

  border: none;

  border-radius: 50px;

  transition: 0.35s;
}

.btn-primary-custom:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 40px rgba(38, 40, 113, 0.25);
}

.btn-outline-custom {
  border: 2px solid var(--primary);

  color: var(--primary);

  border-radius: 50px;

  transition: 0.35s;
}

.btn-outline-custom:hover {
  background: var(--primary);

  color: white;
}

.hero {
  min-height: 100vh;

  display: flex;

  align-items: center;

  padding-top: 100px;

  position: relative;

  overflow: hidden;

  background: linear-gradient(135deg, #262871, #45317d, #6c385e);

  color: #fff;
}
.hero::before {
  content: "";

  position: absolute;

  width: 700px;

  height: 700px;

  background: rgba(255, 255, 255, 0.08);

  border-radius: 50%;

  top: -280px;

  right: -250px;

  filter: blur(120px);

  z-index: 0;
}

.hero::after {
  content: "";

  position: absolute;

  width: 600px;

  height: 600px;

  background: rgba(255, 255, 255, 0.05);

  border-radius: 50%;

  left: -220px;

  bottom: -250px;

  filter: blur(120px);

  z-index: 0;
}

.hero > .max-w-7xl {
  position: relative;

  z-index: 2;
}

.glass-card {
  background: rgba(255, 255, 255, 0.65);

  backdrop-filter: blur(18px);

  border-radius: 24px;

  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.floating-card {
  transition: 0.4s;
}

.floating-card:hover {
  transform: translateY(-10px);
}

@media (max-width: 992px) {
  .hero {
    text-align: center;
  }

  .hero-title {
    font-size: 2.8rem;
  }
}
/* ==========================================
   ABOUT PAGE
========================================== */

.about-page .hero {
  margin-top: 85px;
  background: linear-gradient(135deg, #262871, #40327a, #6c385e);
  color: #fff;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.about-page .hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -180px;
  left: -150px;
}

.about-page .hero::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  right: -80px;
  bottom: -80px;
}

.about-page .hero h1 {
  font-size: 60px;
  font-weight: 800;
}

.about-page .hero p {
  font-size: 20px;
  max-width: 750px;
  margin: auto;
  line-height: 1.8;
  opacity: 0.95;
}

.about-page .breadcrumbs {
  margin-top: 25px;
  font-size: 15px;
}

@media (max-width: 768px) {
  .about-page .hero h1 {
    font-size: 38px;
  }

  .about-page .hero p {
    font-size: 17px;
  }
}
/* ==========================================================
   SERVICES PAGE
========================================================== */

/* ========= Root Variables ========= */

:root {
  --service-primary: #262871;
  --service-secondary: #6c385e;

  --service-accent: #2563eb;

  --service-bg: #ffffff;
  --service-bg-light: #f8fafc;

  --service-border: #e2e8f0;

  --service-text: #0f172a;
  --service-muted: #64748b;

  --service-radius: 20px;

  --service-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}

/* ========= Page ========= */

body {
  background: var(--service-bg);
}

/* ========= Section ========= */

section {
  position: relative;

  overflow: hidden;
}

/* ========= Container ========= */

.max-w-7xl,
.max-w-6xl,
.max-w-5xl {
  position: relative;

  z-index: 2;
}

/* ========= Subtitle ========= */

.section-subtitle {
  display: inline-flex;

  align-items: center;

  gap: 0.6rem;

  font-size: 0.9rem;

  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  color: var(--service-secondary);
}

.section-subtitle::before {
  content: "";

  width: 42px;

  height: 2px;

  background: var(--service-secondary);
}

/* ========= Title ========= */

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);

  font-weight: 800;

  line-height: 1.2;

  color: var(--service-text);
}

/* ========= Text ========= */

.section-text {
  font-size: 1.05rem;

  line-height: 1.9;

  color: var(--service-muted);

  margin: 0;
}
/* ==========================================================
   COMPONENTS
========================================================== */

/* ========= Glass Card ========= */

.glass-card {
  background: rgba(255, 255, 255, 0.75);

  backdrop-filter: blur(14px);

  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.45);

  border-radius: var(--service-radius);

  box-shadow: var(--service-shadow);

  transition: all 0.35s ease;
}

.glass-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.14);
}

/* ========= Showcase ========= */

.service-showcase {
  position: relative;
}

.service-showcase::before {
  content: "";

  position: absolute;

  inset: -10px;

  border-radius: calc(var(--service-radius) + 10px);

  background: linear-gradient(
    135deg,
    rgba(38, 40, 113, 0.08),
    rgba(108, 56, 94, 0.06)
  );

  z-index: -1;
}

/* ========= Feature Card ========= */

.feature-card {
  display: flex;

  flex-direction: column;

  justify-content: center;

  gap: 12px;

  padding: 24px;

  background: #fff;

  border: 1px solid var(--service-border);

  border-radius: 18px;

  transition: all 0.3s ease;

  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);

  min-height: 160px;
}

.feature-card:hover {
  transform: translateY(-6px);

  border-color: var(--service-primary);

  box-shadow: 0 18px 40px rgba(38, 40, 113, 0.12);
}

.feature-card i {
  font-size: 2rem;

  color: var(--service-primary);
}

.feature-card h3 {
  font-size: 1.15rem;

  font-weight: 700;

  color: var(--service-text);

  margin: 0;
}

.feature-card span {
  font-size: 1rem;

  font-weight: 600;

  color: var(--service-text);
}

.feature-card p {
  margin: 0;

  font-size: 0.96rem;

  line-height: 1.7;

  color: var(--service-muted);
}

/* ========= Service Icon ========= */

.service-icon {
  width: 80px;

  height: 80px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  font-size: 2rem;

  color: #fff;

  background: linear-gradient(
    135deg,
    var(--service-primary),
    var(--service-secondary)
  );

  box-shadow: 0 12px 30px rgba(38, 40, 113, 0.25);
}

/* ========= Buttons ========= */

.btn-zs {
  border: none;

  border-radius: 12px;

  padding: 14px 30px;

  font-weight: 700;

  transition: all 0.3s ease;
}

.btn-zs.btn-primary {
  background: linear-gradient(
    135deg,
    var(--service-primary),
    var(--service-secondary)
  );

  color: #fff;
}

.btn-zs.btn-primary:hover {
  transform: translateY(-3px);

  box-shadow: 0 16px 35px rgba(38, 40, 113, 0.25);
}

.btn-outline {
  border: 2px solid var(--service-primary);

  color: var(--service-primary);

  border-radius: 12px;

  padding: 14px 30px;

  font-weight: 700;

  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--service-primary);

  color: #fff;
}
/* ==========================================================
   HERO & PAGE SECTIONS
========================================================== */

/* ========= Hero ========= */

.hero {
  position: relative;

  overflow: hidden;

  min-height: 680px;

  display: flex;

  align-items: center;

  background: linear-gradient(
    135deg,
    rgba(38, 40, 113, 0.95),
    rgba(108, 56, 94, 0.9)
  );

  color: #fff;
}
/* ==========================================================
   HERO CONTENT
========================================================== */

.hero-subtitle {
  color: #262871;

  font-size: 1rem;

  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.6rem);

  line-height: 1.15;

  font-weight: 800;

  color: #ffffff;
}

.hero-title span {
  display: block;

  color: #9ecbff;
}

.hero-text {
  color: rgba(255, 255, 255, 0.88);

  font-size: 1.08rem;

  line-height: 1.9;

  max-width: 700px;
}
.btn-light {
  background: #ffffff;

  color: #262871;

  border: none;
}

.btn-light:hover {
  background: #f8fafc;
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.45);

  color: #ffffff;

  background: transparent;
}

.btn-outline-light:hover {
  background: #ffffff;

  color: #262871;
}
.floating-card {
  background: rgba(255, 255, 255, 0.1);

  border: 1px solid rgba(255, 255, 255, 0.2);

  backdrop-filter: blur(18px);

  -webkit-backdrop-filter: blur(18px);
}

.hero::before {
  content: "";

  position: absolute;

  inset: 0;

  background: radial-gradient(
    circle at top right,
    rgba(255, 255, 255, 0.12),
    transparent 45%
  );

  pointer-events: none;
}

.hero .section-subtitle {
  color: #fff;
}

.hero .section-subtitle::before {
  background: #fff;
}

.hero .section-title {
  color: #fff;
}

.hero .section-text {
  color: rgba(255, 255, 255, 0.85);
}

.hero .glass-card {
  background: rgba(255, 255, 255, 0.12);

  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero .feature-card {
  background: rgba(255, 255, 255, 0.08);

  border-color: rgba(255, 255, 255, 0.15);
}

.hero .feature-card span {
  color: #fff;
}

.hero .feature-card i {
  color: #fff;
}

/* ========= FAQ ========= */

.collapse {
  border-radius: 16px;

  transition: all 0.3s ease;
}

.collapse:hover {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.collapse-title {
  font-weight: 700;

  color: var(--service-text);
}

.collapse-content {
  color: var(--service-muted);

  line-height: 1.8;
}

/* ========= CTA ========= */

.glass-card.text-center {
  border-radius: 28px;

  padding: 4rem;
}

.glass-card.text-center .section-title {
  margin-bottom: 1rem;
}

/* ========= Footer ========= */

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer p {
  line-height: 1.8;
}

.footer h3 {
  margin: 0;
}
/* ==========================================================
   RESPONSIVE DESIGN
========================================================== */

/* ---------- Large Devices ---------- */

@media (max-width: 1200px) {
  .hero {
    min-height: 620px;
  }

  .section-title {
    font-size: 2.6rem;
  }
}

/* ---------- Tablets ---------- */

@media (max-width: 992px) {
  section {
    padding-top: 5rem !important;

    padding-bottom: 5rem !important;
  }

  .hero {
    min-height: auto;

    padding: 7rem 0 5rem;

    text-align: center;
  }

  .hero .grid {
    gap: 3rem;
  }

  .section-subtitle {
    justify-content: center;
  }

  .section-title {
    font-size: 2.3rem;
  }

  .section-text {
    font-size: 1rem;
  }

  .feature-card {
    min-height: 140px;
  }

  .glass-card.text-center {
    padding: 3rem 2rem;
  }
}

/* ---------- Mobile ---------- */

@media (max-width: 768px) {
  .hero {
    padding: 6rem 0 4rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-text {
    font-size: 0.96rem;

    line-height: 1.8;
  }

  .feature-card {
    min-height: auto;

    padding: 20px;
  }

  .feature-card i {
    font-size: 1.75rem;
  }

  .service-icon {
    width: 64px;

    height: 64px;

    font-size: 1.6rem;
  }

  .glass-card {
    padding: 1.5rem;
  }

  .glass-card.text-center {
    padding: 2.5rem 1.5rem;
  }

  .btn-zs,
  .btn-outline {
    width: 100%;

    justify-content: center;
  }
}

/* ---------- Small Mobile ---------- */

@media (max-width: 576px) {
  .hero {
    padding-top: 5.5rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .section-subtitle {
    font-size: 0.8rem;

    letter-spacing: 0.06em;
  }

  .section-subtitle::before {
    width: 28px;
  }

  .service-icon {
    width: 58px;

    height: 58px;

    font-size: 1.4rem;
  }

  .feature-card {
    padding: 18px;

    border-radius: 14px;
  }

  .collapse-title {
    font-size: 1rem;
  }

  .footer {
    padding: 3rem 1rem;
  }

  .footer h3 {
    font-size: 1.5rem;
  }

  .footer p {
    font-size: 0.9rem;
  }
}

/* ==========================================================
   ANIMATIONS
========================================================== */

.feature-card,
.glass-card,
.btn-zs,
.btn-outline {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.feature-card:hover,
.glass-card:hover {
  will-change: transform;
}

/* ==========================================================
   END
========================================================== */

/* ===================================================
   UTILITIES
=================================================== */

/* ===================================================
   TAILWIND
=================================================== */

*,
::before,
::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
}

/* ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com */ /*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: "";
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
  tab-size: 4; /* 3 */
  font-family:
    ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type="button"]),
input:where([type="reset"]),
input:where([type="submit"]) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
.collapse {
  visibility: collapse;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.inset-0 {
  inset: 0px;
}
.inset-x-0 {
  left: 0px;
  right: 0px;
}
.-bottom-24 {
  bottom: -6rem;
}
.-left-20 {
  left: -5rem;
}
.-left-24 {
  left: -6rem;
}
.-right-24 {
  right: -6rem;
}
.-top-24 {
  top: -6rem;
}
.-top-32 {
  top: -8rem;
}
.-top-4 {
  top: -1rem;
}
.bottom-0 {
  bottom: 0px;
}
.bottom-10 {
  bottom: 2.5rem;
}
.bottom-8 {
  bottom: 2rem;
}
.left-0 {
  left: 0px;
}
.left-1\/2 {
  left: 50%;
}
.left-20 {
  left: 5rem;
}
.right-0 {
  right: 0px;
}
.right-10 {
  right: 2.5rem;
}
.right-6 {
  right: 1.5rem;
}
.right-8 {
  right: 2rem;
}
.top-0 {
  top: 0px;
}
.top-20 {
  top: 5rem;
}
.top-full {
  top: 100%;
}
.z-10 {
  z-index: 10;
}
.z-50 {
  z-index: 50;
}
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mb-20 {
  margin-bottom: 5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.ml-auto {
  margin-left: auto;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-14 {
  margin-top: 3.5rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-20 {
  margin-top: 5rem;
}
.mt-24 {
  margin-top: 6rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-7 {
  margin-top: 1.75rem;
}
.mt-8 {
  margin-top: 2rem;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.h-11 {
  height: 2.75rem;
}
.h-12 {
  height: 3rem;
}
.h-14 {
  height: 3.5rem;
}
.h-16 {
  height: 4rem;
}
.h-20 {
  height: 5rem;
}
.h-24 {
  height: 6rem;
}
.h-56 {
  height: 14rem;
}
.h-72 {
  height: 18rem;
}
.h-80 {
  height: 20rem;
}
.h-96 {
  height: 24rem;
}
.h-\[28rem\] {
  height: 28rem;
}
.h-\[30rem\] {
  height: 30rem;
}
.h-\[500px\] {
  height: 500px;
}
.h-full {
  height: 100%;
}
.w-1 {
  width: 0.25rem;
}
.w-11 {
  width: 2.75rem;
}
.w-14 {
  width: 3.5rem;
}
.w-16 {
  width: 4rem;
}
.w-20 {
  width: 5rem;
}
.w-24 {
  width: 6rem;
}
.w-72 {
  width: 18rem;
}
.w-80 {
  width: 20rem;
}
.w-96 {
  width: 24rem;
}
.w-\[28rem\] {
  width: 28rem;
}
.w-\[30rem\] {
  width: 30rem;
}
.w-\[980px\] {
  width: 980px;
}
.w-auto {
  width: auto;
}
.w-full {
  width: 100%;
}
.w-12 {
  width: 3rem;
}
.w-10 {
  width: 2.5rem;
}
.min-w-\[1100px\] {
  min-width: 1100px;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-5xl {
  max-width: 64rem;
}
.max-w-6xl {
  max-width: 72rem;
}
.max-w-7xl {
  max-width: 90rem;
}
.max-w-xl {
  max-width: 36rem;
}
.max-w-7 {
  max-width: 1.75rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.shrink-0 {
  flex-shrink: 0;
}
.grow {
  flex-grow: 1;
}
.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-pointer {
  cursor: pointer;
}
.list-disc {
  list-style-type: disc;
}
.list-none {
  list-style-type: none;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-items-center {
  justify-items: center;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-10 {
  gap: 2.5rem;
}
.gap-12 {
  gap: 3rem;
}
.gap-14 {
  gap: 3.5rem;
}
.gap-16 {
  gap: 4rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-20 {
  gap: 5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-80 {
  gap: 20rem;
}
.gap-96 {
  gap: 24rem;
}
.gap-60 {
  gap: 15rem;
}
.space-y-10 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2.5rem * var(--tw-space-y-reverse));
}
.space-y-16 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(4rem * var(--tw-space-y-reverse));
}
.space-y-20 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-x-auto {
  overflow-x: auto;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.border {
  border-width: 1px;
}
.border-0 {
  border-width: 0px;
}
.border-2 {
  border-width: 2px;
}
.border-4 {
  border-width: 4px;
}
.border-y {
  border-top-width: 1px;
  border-bottom-width: 1px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-\[\#262871\] {
  --tw-border-opacity: 1;
  border-color: rgb(38 40 113 / var(--tw-border-opacity, 1));
}
.border-\[\#6C385E\] {
  --tw-border-opacity: 1;
  border-color: rgb(108 56 94 / var(--tw-border-opacity, 1));
}
.border-cyan-400 {
  --tw-border-opacity: 1;
  border-color: rgb(34 211 238 / var(--tw-border-opacity, 1));
}
.border-slate-100 {
  --tw-border-opacity: 1;
  border-color: rgb(241 245 249 / var(--tw-border-opacity, 1));
}
.border-slate-200 {
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
}
.border-slate-200\/70 {
  border-color: rgb(226 232 240 / 0.7);
}
.border-slate-300 {
  --tw-border-opacity: 1;
  border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
}
.border-slate-700 {
  --tw-border-opacity: 1;
  border-color: rgb(51 65 85 / var(--tw-border-opacity, 1));
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.border-white\/10 {
  border-color: rgb(255 255 255 / 0.1);
}
.border-white\/20 {
  border-color: rgb(255 255 255 / 0.2);
}
.bg-\[\#071126\] {
  --tw-bg-opacity: 1;
  background-color: rgb(7 17 38 / var(--tw-bg-opacity, 1));
}
.bg-\[\#081229\] {
  --tw-bg-opacity: 1;
  background-color: rgb(8 18 41 / var(--tw-bg-opacity, 1));
}
.bg-\[\#262871\] {
  --tw-bg-opacity: 1;
  background-color: rgb(38 40 113 / var(--tw-bg-opacity, 1));
}
.bg-\[\#262871\]\/10 {
  background-color: rgb(38 40 113 / 0.1);
}
.bg-\[\#6C385E\] {
  --tw-bg-opacity: 1;
  background-color: rgb(108 56 94 / var(--tw-bg-opacity, 1));
}
.bg-\[\#6C385E\]\/10 {
  background-color: rgb(108 56 94 / 0.1);
}
.bg-cyan-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(103 232 249 / var(--tw-bg-opacity, 1));
}
.bg-cyan-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(34 211 238 / var(--tw-bg-opacity, 1));
}
.bg-cyan-400\/20 {
  background-color: rgb(34 211 238 / 0.2);
}
.bg-fuchsia-500\/20 {
  background-color: rgb(217 70 239 / 0.2);
}
.bg-purple-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(192 132 252 / var(--tw-bg-opacity, 1));
}
.bg-slate-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
}
.bg-slate-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(226 232 240 / var(--tw-bg-opacity, 1));
}
.bg-slate-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
}
.bg-slate-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(15 23 42 / var(--tw-bg-opacity, 1));
}
.bg-slate-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(2 6 23 / var(--tw-bg-opacity, 1));
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/10 {
  background-color: rgb(255 255 255 / 0.1);
}
.bg-white\/5 {
  background-color: rgb(255 255 255 / 0.05);
}
.bg-white\/90 {
  background-color: rgb(255 255 255 / 0.9);
}
.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.from-\[\#1e2567\] {
  --tw-gradient-from: #1e2567 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(30 37 103 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#262871\] {
  --tw-gradient-from: #262871 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(38 40 113 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-slate-900 {
  --tw-gradient-from: #0f172a var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(15 23 42 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-\[\#262871\] {
  --tw-gradient-to: rgb(38 40 113 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:
    var(--tw-gradient-from), #262871 var(--tw-gradient-via-position),
    var(--tw-gradient-to);
}
.via-\[\#2d347d\] {
  --tw-gradient-to: rgb(45 52 125 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:
    var(--tw-gradient-from), #2d347d var(--tw-gradient-via-position),
    var(--tw-gradient-to);
}
.via-\[\#2f347f\] {
  --tw-gradient-to: rgb(47 52 127 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:
    var(--tw-gradient-from), #2f347f var(--tw-gradient-via-position),
    var(--tw-gradient-to);
}
.via-\[\#3942a5\] {
  --tw-gradient-to: rgb(57 66 165 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:
    var(--tw-gradient-from), #3942a5 var(--tw-gradient-via-position),
    var(--tw-gradient-to);
}
.to-\[\#262871\] {
  --tw-gradient-to: #262871 var(--tw-gradient-to-position);
}
.to-\[\#6C385E\] {
  --tw-gradient-to: #6c385e var(--tw-gradient-to-position);
}
.to-slate-900 {
  --tw-gradient-to: #0f172a var(--tw-gradient-to-position);
}
.object-contain {
  -o-object-fit: contain;
  object-fit: contain;
}
.p-10 {
  padding: 2.5rem;
}
.p-16 {
  padding: 4rem;
}
.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-7 {
  padding: 1.75rem;
}
.p-8 {
  padding: 2rem;
}
.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-7 {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.py-28 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pb-28 {
  padding-bottom: 7rem;
}
.pl-8 {
  padding-left: 2rem;
}
.pt-40 {
  padding-top: 10rem;
}
.text-center {
  text-align: center;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}
.text-7xl {
  font-size: 4.5rem;
  line-height: 1;
}
.text-8xl {
  font-size: 6rem;
  line-height: 1;
}
.text-\[10px\] {
  font-size: 10px;
}
.text-\[120px\] {
  font-size: 120px;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.leading-10 {
  line-height: 2.5rem;
}
.leading-7 {
  line-height: 1.75rem;
}
.leading-8 {
  line-height: 2rem;
}
.leading-9 {
  line-height: 2.25rem;
}
.leading-tight {
  line-height: 1.25;
}
.leading-6 {
  line-height: 1.5rem;
}
.tracking-\[\.25em\] {
  letter-spacing: 0.25em;
}
.tracking-\[0\.25em\] {
  letter-spacing: 0.25em;
}
.tracking-\[0\.2em\] {
  letter-spacing: 0.2em;
}
.tracking-\[3px\] {
  letter-spacing: 3px;
}
.tracking-\[4px\] {
  letter-spacing: 4px;
}
.tracking-\[5px\] {
  letter-spacing: 5px;
}
.tracking-\[6px\] {
  letter-spacing: 6px;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.text-\[\#262871\] {
  --tw-text-opacity: 1;
  color: rgb(38 40 113 / var(--tw-text-opacity, 1));
}
.text-\[\#38bdf8\] {
  --tw-text-opacity: 1;
  color: rgb(56 189 248 / var(--tw-text-opacity, 1));
}
.text-\[\#6C385E\] {
  --tw-text-opacity: 1;
  color: rgb(108 56 94 / var(--tw-text-opacity, 1));
}
.text-amber-400 {
  --tw-text-opacity: 1;
  color: rgb(251 191 36 / var(--tw-text-opacity, 1));
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.text-blue-600 {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.text-blue-700 {
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}
.text-cyan-300 {
  --tw-text-opacity: 1;
  color: rgb(103 232 249 / var(--tw-text-opacity, 1));
}
.text-green-600 {
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}
.text-purple-300 {
  --tw-text-opacity: 1;
  color: rgb(216 180 254 / var(--tw-text-opacity, 1));
}
.text-red-600 {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.text-slate-200 {
  --tw-text-opacity: 1;
  color: rgb(226 232 240 / var(--tw-text-opacity, 1));
}
.text-slate-300 {
  --tw-text-opacity: 1;
  color: rgb(203 213 225 / var(--tw-text-opacity, 1));
}
.text-slate-400 {
  --tw-text-opacity: 1;
  color: rgb(148 163 184 / var(--tw-text-opacity, 1));
}
.text-slate-500 {
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}
.text-slate-600 {
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}
.text-slate-700 {
  --tw-text-opacity: 1;
  color: rgb(51 65 85 / var(--tw-text-opacity, 1));
}
.text-slate-800 {
  --tw-text-opacity: 1;
  color: rgb(30 41 59 / var(--tw-text-opacity, 1));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-white\/70 {
  color: rgb(255 255 255 / 0.7);
}
.text-white\/80 {
  color: rgb(255 255 255 / 0.8);
}
.text-yellow-300 {
  --tw-text-opacity: 1;
  color: rgb(253 224 71 / var(--tw-text-opacity, 1));
}
.text-yellow-400 {
  --tw-text-opacity: 1;
  color: rgb(250 204 21 / var(--tw-text-opacity, 1));
}
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.opacity-10 {
  opacity: 0.1;
}
.opacity-20 {
  opacity: 0.2;
}
.opacity-60 {
  opacity: 0.6;
}
.opacity-70 {
  opacity: 0.7;
}
.opacity-80 {
  opacity: 0.8;
}
.opacity-\[0\.05\] {
  opacity: 0.05;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored:
    0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow:
    var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000),
    var(--tw-shadow);
}
.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow:
    var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000),
    var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow:
    0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored:
    0 10px 15px -3px var(--tw-shadow-color),
    0 4px 6px -4px var(--tw-shadow-color);
  box-shadow:
    var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000),
    var(--tw-shadow);
}
.shadow-xl {
  --tw-shadow:
    0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored:
    0 20px 25px -5px var(--tw-shadow-color),
    0 8px 10px -6px var(--tw-shadow-color);
  box-shadow:
    var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000),
    var(--tw-shadow);
}
.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast)
    var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate)
    var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-3xl {
  --tw-blur: blur(64px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast)
    var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate)
    var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast)
    var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate)
    var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-blur {
  --tw-backdrop-blur: blur(8px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness)
    var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale)
    var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert)
    var(--tw-backdrop-opacity) var(--tw-backdrop-saturate)
    var(--tw-backdrop-sepia);
}
.backdrop-blur-md {
  --tw-backdrop-blur: blur(12px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness)
    var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale)
    var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert)
    var(--tw-backdrop-opacity) var(--tw-backdrop-saturate)
    var(--tw-backdrop-sepia);
}
.backdrop-blur-xl {
  --tw-backdrop-blur: blur(24px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness)
    var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale)
    var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert)
    var(--tw-backdrop-opacity) var(--tw-backdrop-saturate)
    var(--tw-backdrop-sepia);
}
.backdrop-filter {
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness)
    var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale)
    var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert)
    var(--tw-backdrop-opacity) var(--tw-backdrop-saturate)
    var(--tw-backdrop-sepia);
}
.transition {
  transition-property:
    color, background-color, border-color, text-decoration-color, fill, stroke,
    opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-300 {
  transition-duration: 300ms;
}

/* ==========================================
            COMPANY DROPDOWN
========================================== */
/* COMPANY MEGA MENU */

.mega-link {
  display: block;
  padding: 12px 0;
  color: #334155;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease;
}

.mega-link:hover {
  color: #262871;
}

.group:hover > .group-hover\:block {
  display: block;
}

.group:hover .group-hover\:rotate-180 {
  transform: rotate(180deg);
}
/* ==========================================
        COMPANY MENU ANIMATION
========================================== */

.group {
  position: relative;
}
.group:hover > .company-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.company-mega {
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: 0.3s ease;
  pointer-events: none;
  background: #ffffff;
}

.group:hover > .company-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Hover */

.mega-link {
  position: relative;
}

.mega-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transition: 0.25s;
}

.mega-link:hover::before {
  transform: scaleY(1);
}

.hover\:-translate-y-1:hover {
  --tw-translate-y: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:-translate-y-2:hover {
  --tw-translate-y: -0.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:border-\[\#262871\]:hover {
  --tw-border-opacity: 1;
  border-color: rgb(38 40 113 / var(--tw-border-opacity, 1));
}

.hover\:bg-\[\#1d1f59\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(29 31 89 / var(--tw-bg-opacity, 1));
}

.hover\:bg-\[\#262871\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(38 40 113 / var(--tw-bg-opacity, 1));
}

.hover\:bg-white:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.hover\:text-\[\#262871\]:hover {
  --tw-text-opacity: 1;
  color: rgb(38 40 113 / var(--tw-text-opacity, 1));
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.hover\:underline:hover {
  text-decoration-line: underline;
}

.hover\:shadow-2xl:hover {
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow:
    var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000),
    var(--tw-shadow);
}

.group[open] .group-open\:rotate-45 {
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:rotate-180 {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .md\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .md\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }

  .md\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }
}

@media (min-width: 1024px) {
  .lg\:order-1 {
    order: 1;
  }

  .lg\:order-2 {
    order: 2;
  }

  .lg\:ml-12 {
    margin-left: 3rem;
  }

  .lg\:ml-auto {
    margin-left: auto;
  }

  .lg\:mt-0 {
    margin-top: 0px;
  }

  .lg\:block {
    display: block;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:w-\[48\%\] {
    width: 48%;
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .lg\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:py-36 {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .lg\:text-right {
    text-align: right;
  }

  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }

  .lg\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }
}

@media (min-width: 1280px) {
  .xl\:flex {
    display: flex;
  }

  .xl\:hidden {
    display: none;
  }

  .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .xl\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
