* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
     padding-top: 90px;
}

/* Navigation Bar */
.navbar {
    background: #1a1a2e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.nav-container {
    margin: 0 auto;
    padding: 10px 20px 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo - Left Side */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-img {
    height: 80px;
    width: 150px;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.logo a:hover .logo-img {
    transform: scale(1.1);
    filter: drop-shadow(2px 2px 8px rgba(255, 215, 0, 0.5));
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;

    /* ⭐ ADDED → Ensures menu stays right */
    margin-left: auto;
}

.nav-item {
    position: relative;
}

/* Dropdown Menu for Home1 */
.home-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a2e;
    list-style: none;
    padding: 10px 0;
    margin: 5px 0 0 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    z-index: 1001;
}

.home-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-link:hover {
    background: transparent;
    color: #ffd700;
    padding-left: 25px;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
    display: block;
    border-radius: 25px;
    background: transparent;
}

.nav-link:hover {
    background: transparent;
    color: #ffd700;
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .nav-container {
        height: auto;
        padding: 10px 20px;
    }

    .hamburger {
        display: flex;
    }

    .logo-img {
        height: 70px;
        width: 70px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #1a1a2e;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-link {
        width: 100%;
        padding: 15px 20px;
        margin: 5px 20px;
        border-radius: 10px;
    }

    .nav-link:hover {
        background: transparent;
        color: #ffd700;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin: 0;
        padding: 0;
        background: transparent;
    }

    .home-dropdown:hover .dropdown-menu {
        transform: none;
    }

    .dropdown-link {
        padding: 10px 40px;
        font-size: 14px;
    }
}
/* Scrollbar Styling */

:root {
  --bg-dark: #020617;
  --bg-dark-soft: #0f172a;
  --bg-light: #f8fafc;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --white: #ffffff;
  --border-soft: #e2e8f0;
  --radius-lg: 1.5rem;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.15);
  --shadow-strong: 0 20px 40px rgba(15, 23, 42, 0.4);
}

/* Global reset / base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}


.page {
  min-height: 100vh;
  background-color: #ffffff;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Utilities */
.desktop-only {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-only {
    display: block;
  }
}

/* Buttons */
.btn {
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: background-color 0.15s ease, color 0.15s ease,
    box-shadow 0.15s ease, transform 0.1s ease;
}
.hero-btn {
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary-rounded {
  background: linear-gradient(to right, #f59e0b, #d97706);
  color: var(--white);
}

.btn-primary-rounded:hover {
  background: linear-gradient(to right, #fbbf24, #f59e0b);
  box-shadow: var(--shadow-soft);
}

.btn-outline-light {
  background: transparent;
  color: #e2e8f0;
  border-radius: 999px;
  border: 1px solid rgba(241, 245, 249, 0.5);
}

.btn-outline-light:hover {
  background-color: rgba(15, 23, 42, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border-radius: 999px;
  border: 1px solid #cbd5f5;
}

.btn-outline:hover {
  background-color: #e2e8f0;
}

.btn-light {
  background-color: var(--white);
  color: var(--bg-dark-soft);
  border-radius: 0.9rem;
  border: none;
}

.btn-light:hover {
  background-color: #e5e7eb;
}

.hero-btn {
  height: 3.5rem;
  font-size: 1rem;
}

.btn-icon {
  font-size: 1.1rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(circle at top left, #1f2937, #020617);
  color: var(--white);
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-circle {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
}

.hero-circle-1 {
  width: 18rem;
  height: 18rem;
  background-color: rgba(245, 158, 11, 0.2);
  top: 5rem;
  left: 2rem;
}

.hero-circle-2 {
  width: 22rem;
  height: 22rem;
  background-color: rgba(59, 130, 246, 0.25);
  bottom: 4rem;
  right: 2rem;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920");
  background-size: cover;
  background-position: center;
  opacity: 0.13;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-block: 3rem 4rem;
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: center;
    padding-block: 4rem 5rem;
  }
}

.hero-content {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(10px);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background-color: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

.badge-text {
  font-size: 0.8rem;
  color: rgba(249, 250, 251, 0.9);
}

.hero-title {
  font-size: 2.3rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-title-gradient {
  display: block;
  background: linear-gradient(to right, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  color: transparent;
  margin-top: 0.2rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-subtitle {
  max-width: 32rem;
  margin: 0 auto 1.8rem;
  font-size: 1.02rem;
  color: rgba(226, 232, 240, 0.8);
}

@media (min-width: 1024px) {
  .hero-subtitle {
    margin: 0 0 2rem;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-actions {
    justify-content: flex-start;
  }
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .hero-social-proof {
    justify-content: flex-start;
  }
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 2px solid #020617;
  background: linear-gradient(to bottom right, #4b5563, #111827);
  margin-left: -0.75rem;
}

/* Ensure inline SVG human icon is centered and fits the round avatar */
.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff; /* icon color (inherited by svg using currentColor) */
}

.avatar .icon-user {
  width: 60%;
  height: 60%;
  display: block;
}

.avatar:first-child {
  margin-left: 0;
}

.hero-rating .stars {
  color: #fbbf24;
  font-size: 1rem;
}

.hero-rating-text {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(209, 213, 219, 0.8);
}

/* Hero visual */
.hero-visual {
  position: relative;
}

.hero-visual-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(245, 158, 11, 0.2),
    rgba(59, 130, 246, 0.2)
  );
  border-radius: 1.7rem;
  filter: blur(30px);
}

.hero-image {
  position: relative;
  border-radius: 1.7rem;
  box-shadow: var(--shadow-strong);
  max-width: 22rem;
  margin-inline: auto;
}

/* Floating cards */
.floating-card {
  position: absolute;
  border-radius: 1.2rem;
  padding: 0.85rem 1rem;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.4);
  background-color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  animation: float 3s ease-in-out infinite;
}

.floating-card-1 {
  top: 4rem;
  left: -2rem;
}

.floating-card-2 {
  right: -1rem;
  bottom: 4rem;
  background: linear-gradient(to bottom right, #020617, #0f172a);
  color: var(--white);
  animation-duration: 4s;
}

.floating-card-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.growth-icon {
  background-color: #dcfce7;
  font-size: 1.4rem;
}

.card-icon {
  background-color: #f59e0b;
  font-size: 1.1rem;
}

.floating-card-label {
  font-size: 0.7rem;
  color: #6b7280;
  margin: 0 0 0.2rem;
}

.floating-card-label.light {
  color: #9ca3af;
}

.floating-card-value {
  font-size: 1.05rem;
  margin: 0;
  font-weight: 700;
  color: #0f172a;
}

.floating-card-value.light {
  color: #f9fafb;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: float 2s ease-in-out infinite;
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 2px solid rgba(249, 250, 251, 0.5);
  display: flex;
  justify-content: center;
  padding-top: 0.3rem;
}

.scroll-wheel {
  width: 0.18rem;
  height: 0.55rem;
  background-color: rgba(249, 250, 251, 0.7);
  border-radius: 999px;
}

/* Sections */
.section {
  padding-block: 4rem;
}

@media (min-width: 1024px) {
  .section {
    padding-block: 5rem;
  }
}

.bg-light {
  background-color: var(--bg-light);
}

/* Section headers */
.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.section-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-dark);
  font-weight: 600;
}

.section-title {
  font-size: 1.9rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.2rem;
  }
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
}

/* Card Grid */
.card-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid-4 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.card-grid-3 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .card-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .card-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  background-color: var(--white);
  border-radius: 1.4rem;
  padding: 1.5rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.03);
  transition: box-shadow 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(251, 191, 36, 0.6);
}

/* Service cards */
.service-card {
  cursor: pointer;
}

.service-icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1.1rem;
  background: linear-gradient(to bottom right, #f59e0b, #d97706);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  color: #fff;
}

.card-title {
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
}

.card-text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.card-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #b45309;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}

/* Features */
.features-layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .features-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 3rem;
  }
}

.feature-list {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.feature-item {
  display: flex;
  gap: 0.9rem;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  background-color: #fffbeb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-title {
  margin: 0 0 0.2rem;
  font-size: 1rem;
}

.feature-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.features-image-wrap {
  position: relative;
}

.features-bg {
  position: absolute;
  inset: 0;
  border-radius: 1.8rem;
  background: linear-gradient(to bottom right, #fef3c7, #dbeafe);
  transform: rotate(-3deg);
}

.features-image {
  position: relative;
  border-radius: 1.8rem;
  box-shadow: var(--shadow-soft);
}

/* Stats */
.stats-section {
  background: radial-gradient(circle at top left, #1f2937, #020617);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 2.3rem;
  font-weight: 700;
  background: linear-gradient(to right, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 0.3rem;
}

.stat-label {
  margin: 0;
  font-size: 0.9rem;
  color: #cbd5f5;
}

/* Testimonials */
.testimonial-card {
  padding: 1.5rem;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.testimonial-quote {
  margin: 0 0 1.5rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #111827;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  object-fit: cover;
}

.testimonial-name {
  margin: 0;
  font-weight: 600;
}

.testimonial-role {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* App section */
.app-banner {
  position: relative;
  background: radial-gradient(circle at top left, #1e293b, #020617);
  border-radius: 1.9rem;
  padding: 2rem;
  color: #e5e7eb;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .app-banner {
    padding: 3rem;
  }
}

.app-bg-circle {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
}

.app-bg-1 {
  width: 18rem;
  height: 18rem;
  background-color: rgba(245, 158, 11, 0.25);
  top: -3rem;
  right: -3rem;
}
a.store-btn {
  text-decoration: none !important;
}

.app-bg-2 {
  width: 16rem;
  height: 16rem;
  background-color: rgba(59, 130, 246, 0.2);
  bottom: -4rem;
  left: -4rem;
}

.app-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
  z-index: 1;
}

@media (min-width: 1024px) {
  .app-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
}

.app-title {
  font-size: 2rem;
  margin: 0 0 0.9rem;
}

@media (min-width: 640px) {
  .app-title {
    font-size: 2.2rem;
  }
}

.app-subtitle {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  color: rgba(226, 232, 240, 0.8);
}

.app-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.app-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.app-feature-check {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  background-color: #f59e0b;
  color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.store-btn {
  height: 3.2rem;
  font-size: 0.95rem;
}

/* App image */
.app-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.app-image-overlay {
  position: absolute;
  inset: 0;
  border-radius: 1.8rem;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
  z-index: 1;
}

.app-image {
  position: relative;
  border-radius: 1.8rem;
  box-shadow: var(--shadow-strong);
  max-width: 14rem;
}

/* CTA */
.cta-center {
  text-align: center;
  max-width: 40rem;
}

.cta-subtitle {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
  }
}


/*footer*/

.site-footer {
    background: linear-gradient(135deg, #0a0f24, #111b3b);
    color: #d9e4ff;
    padding: 70px 20px 35px;
    font-family: "Poppins", sans-serif;
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* BRAND SECTION */
.footer-brand {
    flex: 1.6;
    min-width: 280px;
}

.footer-logo {
    width: 170px;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #b8c7e8;
    margin-bottom: 20px;
}

/* SUBSCRIBE SECTION */
.footer-subscribe {
    margin-top: 25px;
}

.subscribe-label {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
}

.subscribe-input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 50px;
    border: 1px solid #39466a;
    background: #1a2547;
    color: white;
    outline: none;
    transition: 0.3s;
}

.subscribe-input:focus {
    border-color: #6c92ff;
}

.subscribe-button {
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #5e2bff, #3d94ff);
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
    font-weight: 600;
}

.subscribe-button:hover {
    transform: scale(1.06);
    background: linear-gradient(135deg, #3a20ff, #2d7aff);
}

.subscribe-hint {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #93a3c7;
}

/* LINKS SECTION */
.footer-columns {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 35px;
    min-width: 250px;
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 18px;
    font-size: 1.15rem;
    position: relative;
}

.footer-column h3::after {
    content: "";
    width: 35px;
    height: 3px;
    background: #3b82ff;
    display: block;
    margin-top: 5px;
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #b5c6e4;
    text-decoration: none;
    transition: 0.25s;
}

.footer-column a:hover {
    color: #fff;
    padding-left: 6px;
}

/* FOOTER BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 45px;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom-left p {
    margin: 0;
    color: #92a3ca;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
}

.footer-legal a {
    color: #b7cbff;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: #fff;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 12px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1b2647;
    padding: 10px;
    transition: 0.3s;
    filter: grayscale(30%);
}

.social-icon:hover {
    transform: scale(1.15);
    background: #3b82ff;
    filter: grayscale(0%);
    box-shadow: 0px 0px 12px rgba(59, 130, 255, 0.6);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-columns {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-button {
        width: 100%;
    }

    .footer-columns {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
}
