* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 0;
    margin: 0;
    background: #ffffff;
}

/* Navigation Bar */
.navbar {
    background: #1a1a2e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    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;
    }
}
/* Root Variables */
:root {
  --bg-dark: #020617;
  --bg-dark-soft: #0f172a;
  --bg-soft: #f8fafc;
  --emerald: #059669;
  --emerald-soft: #ecfdf5;
  --emerald-dark: #047857;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border-soft: #e2e8f0;
  --white: #ffffff;
  --shadow-soft: 0 12px 25px rgba(15, 23, 42, 0.15);
  --shadow-card: 0 4px 15px rgba(15, 23, 42, 0.08);
  --radius-lg: 1.5rem;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Responsive Helpers */
.desktop-only {
  display: none;
}

.mobile-only {
  display: inline-flex;
}

@media (min-width: 1024px) {
  .desktop-only {
    display: block;
  }
  .mobile-only {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease,
    box-shadow 0.15s ease, transform 0.1s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary-pill {
  background: linear-gradient(to right, #10b981, #059669);
  color: var(--white);
}

.btn-primary-pill:hover {
  background: linear-gradient(to right, #34d399, #10b981);
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background: linear-gradient(to right, #10b981, #059669);
  color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(to right, #34d399, #10b981);
  box-shadow: var(--shadow-soft);
}

.btn-outline {
  background: transparent;
  border: 1px solid #cbd5f5;
  color: var(--text-main);
}

.btn-outline:hover {
  background-color: #e2e8f0;
}

.btn-outline-pill {
  background: transparent;
  border: 1px solid #cbd5f5;
  color: var(--text-main);
}

.btn-outline-pill:hover {
  background-color: #e2e8f0;
}

.btn-light {
  background-color: var(--white);
  color: var(--bg-dark-soft);
}

.btn-light:hover {
  background-color: #e5e7eb;
}

.hero-btn {
  height: 3.5rem;
  font-size: 1rem;
}

.btn-icon {
  font-size: 1.1rem;
  margin-left: 0.4rem;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 4rem;
}

@media (min-width: 1024px) {
  .hero {
    padding: 4rem 0 5rem;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, #ecfeff, #f0fdf4);
  z-index: -2;
}

.hero-circle {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
}

.hero-circle-1 {
  width: 24rem;
  height: 24rem;
  background-color: rgba(16, 185, 129, 0.25);
  top: 4rem;
  right: -4rem;
}

.hero-circle-2 {
  width: 18rem;
  height: 18rem;
  background-color: rgba(45, 212, 191, 0.25);
  bottom: -4rem;
  left: -4rem;
}

.hero-inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  }
}

.hero-content {
  max-width: 32rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background-color: #dcfce7;
  color: #166534;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.4rem;
  line-height: 1.1;
  margin: 0 0 1rem;
  color: #020617;
}

.hero-title-highlight {
  display: block;
  color: var(--emerald);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.4rem;
  }
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-metric-value {
  font-size: 1.7rem;
  font-weight: 700;
}

.hero-metric-label {
  font-size: 0.82rem;
  color: #6b7280;
}

.hero-metric-separator {
  width: 1px;
  height: 3rem;
  background-color: #e5e7eb;
}

/* Hero Image + Floating Cards */
.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual-wrapper {
  position: relative;
  max-width: 24rem;
}

.hero-image {
  border-radius: 1.8rem;
  box-shadow: var(--shadow-soft);
}

.floating-card {
  position: absolute;
  border-radius: 1.3rem;
  padding: 0.9rem 1.1rem;
  background-color: var(--white);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.floating-card-1 {
  top: 3.5rem;
  left: -2rem;
  animation: floatUpDown 4s ease-in-out infinite;
}

.floating-card-2 {
  bottom: 4.5rem;
  right: -1.5rem;
  background: linear-gradient(to bottom right, #10b981, #0d9488);
  color: #f9fafb;
  animation: floatUpDown2 3.5s ease-in-out infinite;
}

/* Benefits Bar */
.benefits-bar {
  background-color: #020617;
  padding: 1.8rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  background-color: rgba(16, 185, 129, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #6ee7b7;
  flex-shrink: 0;
}

.benefit-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #f9fafb;
  margin: 0 0 0.25rem 0;
}

.benefit-text {
  font-size: 0.85rem;
  color: #d1d5db;
  margin: 0;
}

/* Section */
.section {
  padding: 4rem 0;
}

.section-soft {
  background: linear-gradient(to bottom right, #f8fafc, #ecfdf5);
  padding: 4rem 0;
}

.section-dark {
  background-color: #020617;
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
}

.section-tag-green {
  color: var(--emerald);
  background-color: #ecfdf5;
}

.section-title {
  margin: 1rem 0;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0;
}

/* Cards Grid */
.card-grid {
  display: grid;
  gap: 1.5rem;
}

.products-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background-color: #ffffff;
  border-radius: 1.4rem;
  border: 1px solid var(--border-soft);
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
  border-color: var(--emerald);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-icon {
  font-size: 2.5rem;
}

.product-badge {
  font-size: 0.75rem;
  background: linear-gradient(135deg, #ecfdf5, #dcfce7);
  color: var(--emerald-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 0;
}

.card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  flex-grow: 1;
}

.card-link {
  color: var(--emerald);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.card-link:hover {
  color: var(--emerald-dark);
  margin-left: 0.25rem;
}

/* Steps */
.steps-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  background: white;
  padding: 2rem;
  border-radius: 1.4rem;
  border: 1px solid var(--border-soft);
  transition: all 0.3s ease;
  text-align: center;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
  border-color: var(--emerald);
}

.step-number {
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--emerald);
  margin: 0;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem;
  color: var(--text-main);
}

.step-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

.steps-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

/* Mobile App Section */
.mobile-app-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .mobile-app-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.mobile-app-text {
  max-width: 32rem;
}

.section-title-light {
  color: var(--white);
}

.section-subtitle-light {
  color: #d1d5db;
}

.section-tag-emerald {
  color: #6ee7b7;
}

.feature-list {
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #e5e7eb;
  font-size: 0.95rem;
}

.feature-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.4rem;
  background-color: var(--emerald);
  color: white;
  font-weight: 600;
  flex-shrink: 0;
}

.store-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.store-btn {
  padding: 0.9rem 1.5rem;
}

.mobile-app-image-wrap {
  display: flex;
  justify-content: center;
}

.mobile-app-image {
  border-radius: 1.8rem;
  box-shadow: var(--shadow-soft);
  max-width: 100%;
}

/* CTA Section */
.cta-center {
  text-align: center;
  padding: 2rem 0;
}

/* Footer */

/*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;
    }
}
