@import url('var.css');

/* ══════════════════════════════════════ */
/*  RESET & BASE                          */
/* ══════════════════════════════════════ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--bs-font-sans-serif);
  list-style: none;
  text-decoration: none;
}

body {
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(16px, 5vw, 80px);
}

/* ══════════════════════════════════════ */
/*  SPACING SYSTEM — SINGLE SOURCE        */
/* ══════════════════════════════════════ */

section {
  padding-block: 100px;
}

#hero {
  padding-top: 110px;
  padding-bottom: 60px;
  min-height: 100vh;
}

#hero + section {
  padding-top: 150px;
}

/* ══════════════════════════════════════ */
/*  NAVBAR                                */
/* ══════════════════════════════════════ */

header {
  background-color: rgba(3, 7, 18, 0.85);
  border-bottom: 1px solid var(--bs-card-border-color);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 70px;
}

.navbar-brand {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
}

.navbar-collapse {
  flex-grow: 0 !important;
  flex-basis: auto !important;
  display: flex !important;
}

.navbar-nav {
  flex-direction: row !important;
  gap: 12px;
}

.nav-link {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 10px;
  border: 2px solid transparent;
  background: linear-gradient(var(--bs-body-bg), var(--bs-body-bg)) padding-box,
              var(--gradient-primary) border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-link i {
  font-size: 19px;
}

.iconn {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: color 0.3s ease;
}

.nav-link:hover {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
}

.nav-link:hover .iconn {
  background: var(--text-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════ */
/*  HERO                                  */
/* ══════════════════════════════════════ */

#hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg .bg-overlay {
  position: absolute;
  top: -50px;
  opacity: 0.4;
  right: 400px;
  width: 900px;
  height: 718px;
}

.hero-bg .bg-planet {
  position: absolute;
  top: 0;
  left: 50%;
  width: 600px;
  height: 718px;
  object-fit: cover;
  object-position: left center;
}

#hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 720px;
}

.hero-content h1 {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: #fff;
}

.hero-content h2 {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  margin-top: -18px;
}

.hero-content p {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.65);
}

.btn-secondary-2:hover {
  color: var(--bs-primary);
}

/* ── Hero Badge ── */
.hero-badge-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(#10162e, #10162e) padding-box,
              var(--gradient-primary) border-box;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 4px 12px 4px 4px;
  backdrop-filter: blur(8px);
  width: fit-content;
}

.badge-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.badge-avatars img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(15, 21, 36, 0.9);
  object-fit: cover;
  margin-left: -8px;
}

.badge-avatars img:first-child {
  margin-left: 0;
}

.hero-badge-custom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  white-space: nowrap;
}

.badge-count {
  font-weight: var(--fw-bold);
  font-size: 18px;
  margin-right: 5px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════ */
/*  BUTTONS                               */
/* ══════════════════════════════════════ */

.btn-group2 {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 8px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 12px;
  height: 48px;
  color: #fff;
  font-weight: var(--fw-medium);
  font-size: var(--fs-md);
  opacity: 0.88;
  background-image: var(--gradient-primary);
  border: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
}

.btn-primary:hover {
  opacity: 0.78;
  color: #fff;
}

.btn-secondary-2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  color: #fff;
  height: 48px;
  font-weight: var(--fw-medium);
  font-size: var(--fs-md);
  background: rgba(13, 24, 43, 1);
  border: 1px solid #243E63;
  white-space: nowrap;
  text-decoration: none;
}

.btn-secondary-2:hover {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-desktop { display: inline-flex; }
.btn-mobile  { display: none; }

.btn-desktop {
  width: 208px;
  font-size: 14px;
}

/* ══════════════════════════════════════ */
/*  TITLE                                 */
/* ══════════════════════════════════════ */

.title {
  margin-bottom: 40px;
  text-align: center;
}

.title h4 {
  font-size: var(--fs-sm);
  color: var(--bs-primary);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.title h2 {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: #fff;
}

/* ══════════════════════════════════════ */
/*  SERVICES                              */
/* ══════════════════════════════════════ */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.service-card {
  background-color: #0F1524;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  transition: border-color var(--transition-normal), transform var(--transition-normal);
  box-shadow: 0 2px 20px rgba(74, 148, 249, 0.08);
}

.carddd-2 {
  background-image: linear-gradient(
    90deg,
    rgba(74, 148, 249, 0.2),
    rgba(83, 217, 255, 0.2)
  );
}

.service-card:hover {
  border-color: rgba(74, 148, 249, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(74, 148, 249, 0.15);
}

.card-icon {
  width: 48px;
  height: 48px;
}

.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card h3 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: #fff;
}

.service-card p {
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: #667B99;
}

/* ══════════════════════════════════════ */
/*  WHO WE HELP                           */
/* ══════════════════════════════════════ */

.cards-2 {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.pricing-card {
  flex: 1 1 300px;
  max-width: 100%;
  width: auto;
  background-color: rgba(15, 21, 36, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-card:hover {
  box-shadow: var(--bs-box-shadow);
}

.pricing-card .card-icon {
  width: 48px;
  height: 48px;
  background-color: #131f35;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card .card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pricing-card h3 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1.3;
}

.card-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  margin: 0;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.65);
}

.card-features li img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  height: 40px;
  border-radius: 8px;
  background-color: #131f35;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  opacity: 0.8;
  text-decoration: none;
  margin-top: auto;
  transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.card-btn:hover {
  opacity: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #fff;
}

.carddd-2 .card-btn {
  position: relative;
  background: transparent;
  border: 1px solid rgba(74, 148, 249, 0.45);
  background-image: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: 0.2s;
}

.carddd-2 .card-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(74, 148, 249, 0.18), rgba(83, 217, 255, 0.1));
  z-index: -1;
}

.carddd-2 .card-btn:hover::before {
  background: linear-gradient(135deg, rgba(74, 148, 249, 0.3), rgba(83, 217, 255, 0.22));
}

.carddd-2 .card-btn:hover {
  -webkit-text-fill-color: #fff;
  background-image: none;
}

.carddd-2 {
  transition: 0.2s;
}

.carddd-2:hover {
  box-shadow: var(--bs-box-shadow);
}

/* ══════════════════════════════════════ */
/*  WHY KUBE-OPS                          */
/* ══════════════════════════════════════ */

#why {
  overflow: hidden;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../assetess/background/Frame\ \(1\).png);
}

.why-bg {
  position: relative;
  height: 400px;
}

.why-card {
  position: absolute;
  z-index: 2;
  width: 300px;
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(15, 21, 36, 0.7);
  border: 1px solid rgba(74, 148, 249, 0.25);
  border-radius: 12px;
  padding: 16px;
  backdrop-filter: blur(8px);
}

.why-card-icon img {
  width: 36px;
  height: 36px;
}

.why-card p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin: 0;
}

.why-card-tl { top: 18%;  left: 0; }
.why-card-tr { top: 18%;  right: 0; }
.why-card-bl { bottom: 0; left: 0; }
.why-card-br { bottom: 0; right: 0; }

/* ══════════════════════════════════════ */
/*  OPEN SOURCE                           */
/* ══════════════════════════════════════ */

#open-source {
  padding-block: 64px;
}

.open-source-wrapper {
  display: flex;
  align-items: center;
  gap: 48px;
  background-color: var(--bg-card);
  border-radius: 16px;
  padding: 56px;
  max-width: 1100px;
  margin: 0 auto;
}

.open-source-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.open-source-content h4 {
  font-size: var(--fs-md);
  color: var(--bs-primary);
  font-weight: var(--fw-bold);
  letter-spacing: 1.5px;
}

.open-source-content h2 {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1.3;
}

.open-source-content p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.open-source-cards {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.os-card {
  display: flex;
  gap: 20px;
  background-color: #0d1527;
  border: 1px solid rgba(74, 148, 249, 0.4);
  border-radius: 16px;
  padding: 16px;
  transition: var(--transition-normal);
}

.os-card-img {
  width: 180px;
  height: 130px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #1a2540;
  display: flex;
  align-items: center;
  justify-content: center;
}

.os-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.os-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.os-card-body h3 {
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: #fff;
}

.os-card-body p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* ══════════════════════════════════════ */
/*  CONTACT                               */
/* ══════════════════════════════════════ */

#contact {
  position: relative;
  background-image: url(../assetess/background/Div\ [usecases].png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
  padding-block: 110px;
}

.contact-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  width: 100%;
  padding-top: 80px;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid rgba(74, 148, 249, 0.4);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  letter-spacing: 1.5px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  background-color: rgba(74, 148, 249, 0.08);
  transition: border-color var(--transition-fast);
}

.contact-badge:hover {
  border-color: rgba(74, 148, 249, 0.8);
  color: #fff;
}

.contact-content h2 {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1.3;
  max-width: 580px;
}

.contact-content p {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 480px;
}

.scroll-top {
  position: absolute;
  right: 48px;
  bottom: 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(74, 148, 249, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  z-index: 2;
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(74, 148, 249, 0.6);
  color: #fff;
}

/* ══════════════════════════════════════ */
/*  FOOTER                                */
/* ══════════════════════════════════════ */

footer {
  background-color: var(--bg-footer);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-nav a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: #fff;
}

/* ══════════════════════════════════════ */
/*  LARGE SCREENS — 1400px+               */
/* ══════════════════════════════════════ */

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* ══════════════════════════════════════ */
/*  EXTRA LARGE SCREENS — 1600px+         */
/* ══════════════════════════════════════ */

@media (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }

  section {
    padding-block: 120px;
  }

  #hero {
    min-height: 90vh;
  }

  #hero + section {
    padding-top: 30px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: clamp(52px, 4vw, 72px);
  }

  .hero-bg .bg-overlay {
    right: 500px;
    width: 1100px;
  }

  .hero-bg .bg-planet {
    width: 750px;
  }

  .open-source-wrapper {
    max-width: 1400px;
  }
}

/* ══════════════════════════════════════ */
/*  ULTRA WIDE — 1920px+                  */
/* ══════════════════════════════════════ */

@media (min-width: 1920px) {
  .container {
    max-width: 1700px;
  }

  section {
    padding-block: 140px;
  }

  #hero {
    min-height: 85vh;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: clamp(60px, 4.5vw, 88px);
  }

  .open-source-wrapper {
    max-width: 1650px;
  }
}

/* ══════════════════════════════════════ */
/*  RESPONSIVE — TABLET 992px             */
/* ══════════════════════════════════════ */

@media (max-width: 992px) {

  section {
    padding-block: 80px;
  }

  #hero {
    padding-top: 90px;
    padding-bottom: 60px;
    min-height: auto;
  }

  #hero + section {
    padding-top: 50px;
  }

  .hero-bg .bg-overlay {
    right: 280px;
    width: 680px;
  }

  .hero-bg .bg-planet {
    left: 45%;
    width: 500px;
  }

  .hero-content {
    max-width: 520px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: var(--fs-sm);
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-2 {
    gap: var(--space-4);
  }

  .pricing-card {
    flex: 1 1 calc(50% - var(--space-4));
  }

  .carddd-2 .card-btn {
    -webkit-text-fill-color: #fff;
  }

  .why-card {
    width: 240px;
  }

  .open-source-wrapper {
    flex-direction: column;
    padding: 40px;
  }

  .os-card { width: 100%; }

  .btn-desktop { display: none; }

  .btn-mobile {
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }

  #contact {
    padding-block: 80px;
    min-height: auto;
  }

  .contact-content {
    padding-top: 60px;
  }
}

/* ══════════════════════════════════════ */
/*  RESPONSIVE — MOBILE 768px             */
/* ══════════════════════════════════════ */

@media (max-width: 768px) {

  section {
    padding-block: 70px;
  }

  #hero {
    min-height: 100svh;
    padding-top: 0;
    padding-bottom: 0;
    align-items: center;
    display: flex;
  }

  #hero .container {
    padding-top: 60px;
    padding-bottom: 60px;
    width: 100%;
  }

  #hero + section {
    padding-top: 40px;
  }

  /* navbar */
  .navbar-brand img:first-child {
    display: none;
  }

  .navbar-brand {
    font-size: var(--fs-lg);
  }

  .nav-link {
    width: 40px;
    height: 40px;
    padding: 20px;
    background-image: var(--gradient-primary);
    border-color: transparent;
  }

  .nav-link i {
    font-size: 25px;
  }

  .iconn {
    background: var(--text-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* title */
  .title {
    margin-bottom: 28px;
    text-align: start;
  }

  .title h2 {
    font-size: var(--fs-2xl);
  }

  /* hero */
  .hero-bg .bg-overlay {
    right: auto;
    left: -80px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
  }

  .hero-bg .bg-planet {
    display: none;
  }

  .hero-content {
    max-width: 100%;
    text-align: left;
    align-items: flex-start;
    margin-top: 0;
  }

  /* Badge */
  .hero-badge-custom {
    padding: 5px 10px 5px 5px;
    gap: 10px;
    margin-bottom: 10px;
  }

  .badge-avatars img {
    width: 26px;
    height: 26px;
  }

  .hero-badge-custom p {
    font-size: 10px;
  }

  .badge-count {
    font-size: 14px;
  }

  /* Headings */
  .hero-content h1,
  .hero-content h2 {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -0.5px;
  }

  .hero-content h2 {
    margin-top: -10px;
  }

  /* Description */
  .hero-content p {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
    max-width: 340px;
  }

  .hero-content p br {
    display: none;
  }

  /* Buttons */
  .btn-group2 {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-top: 12px;
  }

  .btn-primary,
  .btn-secondary-2 {
    width: 100%;
    justify-content: center;
    height: 48px;
    font-size: 15px;
    border-radius: 12px;
  }

  /* cards */
  .cards {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    flex: 1 1 100%;
  }

  /* why */
  #why {
    padding-bottom: 150px;
    margin-top: -140px;
    height: 800px;
    background-image: url(../assetess/background/res\ background.png);
  }

  #why .title {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 90%;
    white-space: normal;
    text-align: left;
    margin-bottom: 0;
  }

  #why .title h1 {
    font-size: var(--fs-2xl);
    color: #fff;
  }

  .why-bg {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    margin-top: 190px;
    padding-block: 90px;
  }

  .why-card {
    position: static;
    width: 100%;
    max-width: 100%;
  }

  /* open source */
  #open-source {
    padding-block: 100px;
  }

  .open-source-wrapper {
    padding: 30px;
  }

  .open-source-content h2 {
    font-size: var(--fs-2xl);
    line-height: 2rem;
  }

  .os-card {
    flex-direction: column;
  }

  .open-source-cards {
    margin-top: -30px;
  }

  .os-card-img {
    width: 100%;
    height: 160px;
  }

  .btn-mobile {
    margin-top: -25px;
    margin-bottom: 10px;
  }

  .open-source-content {
    gap: 10px;
  }

  /* contact */
  #contact {
    padding-block: 100px;
    min-height: 550px;
  }

  .contact-content {
    padding-top: 150px;
    gap: 16px;
  }

  .contact-content h2 {
    font-size: var(--fs-2xl);
  }

  .contact-content p {
    font-size: var(--fs-sm);
  }

  #contact .btn-group2 {
    flex-direction: column;
    width: 100%;
    margin: 0;
  }

  .light img {
    width: 220px;
    height: 220px;
  }

  .scroll-top {
    right: 16px;
    bottom: -70px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  /* footer */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 72.5%;
  }

  .footer-nav a {
    font-size: 13px;
    padding: 6px 10px;
  }
}

/* ══════════════════════════════════════ */
/*  RESPONSIVE — SMALL MOBILE 480px       */
/* ══════════════════════════════════════ */

@media (max-width: 480px) {

  .navbar-brand {
    font-size: var(--fs-md);
  }

  .nav-link {
    padding: 15px;
  }

  .nav-link i {
    font-size: 22px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 42px;
    line-height: 1.1;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-badge-custom p {
    font-size: 12px;
  }

  .badge-avatars img {
    width: 22px;
    height: 22px;
  }

  .title h2 {
    font-size: var(--fs-xl);
  }

  .open-source-wrapper {
    padding: 25px;
  }

  .open-source-content h2 {
    font-size: var(--fs-xl);
  }

  .contact-content h2 {
    font-size: var(--fs-xl);
  }

  .light img {
    width: 180px;
    height: 180px;
  }

  .footer-nav {
    gap: 10px;
  }

  .footer-nav a {
    font-size: 12px;
  }
}