/* Base */
body {
  background-color: #f7f8f5;
  font-family: "Inter", system-ui, sans-serif;
  margin: 0;
}


/* Header Styles */
/* =========================
   Header / Navbar Wrapper
========================= */

/* Keep navbar transparent (background handled by hero section) */


/* =========================
   Logo
========================= */
.logo-img {
    height: 44px; /* slightly reduced for balance */
    width: auto;
}

/* =========================
   Navigation Links
========================= */
.nav-link {
    color: #070000 !important;
    font-weight: 500;
    margin: 0 0.75rem;
    padding: 0.375rem 0;
    transition: opacity 0.25s ease, color 0.25s ease;
}

.nav-link:hover {
    opacity: 0.85;
    color: #ffffff !important;
}

/* Active link */
.nav-link.active {
    font-weight: 600;
}

/* =========================
   Language Toggle Button
========================= */
.lang-toggle,
.navbar .btn-link {
    color: #000000;
    border: 1px solid rgba(23, 0, 0, 0.65);
    border-radius: 0.5rem;;
    padding: 0.35rem 0.9rem;
    font-weight: 500;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}
.navbar-toggler{
  background-color: #39BCED;
}
.lang-toggle:hover,
.navbar .btn-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 0, 0, 0.9);
    color: #000000;
}




/* Wrapper */
.main-wrapper {
    margin-top: 50px;
  min-height: calc(100vh - 90px);
  background: #f6f7f3;
  display: flex;
  align-items: center;
}

/* Tablet Zone */
.tablet-zone {
  position: relative;
  min-height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Background Layer */
.bg-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Background Image */
.bg-illustration {
  width: 1400px;
  max-width: none;
  opacity: 0.9;
  height: 900px;
  pointer-events: none;
}

/* Tablet Frame */
.tablet-frame {
    z-index: 10000;
  width: 420px;
  height: auto;
  border-radius: 36px;
  padding: 16px;
  margin-left: 40px;
  padding-top: 0px !important;
}

/* Tablet Screen */
.tablet-screen {
  background: #fff;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  padding: 0px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Heading */
.tablet-screen h4 {
  font-size: 22px;
  font-weight: 600;
}

/* Labels */
.tablet-screen label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

/* Inputs */
.tablet-screen .form-control {
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 10px;
}

/* Button */
.tablet-screen .btn-primary {
  background-color: #1f6efb;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-weight: 600;
}

/* Scrollbar (optional clean look) */
.tablet-screen::-webkit-scrollbar {
  width: 4px;
}
.tablet-screen::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 10px;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 992px) {
  .bg-illustration {
    width: 1000px;
  }
}

@media (max-width: 768px) {
  .tablet-frame {
    width: 100%;
    max-width: 420px;
    height: auto;
    margin-left: 0px;
  }

  .tablet-screen {
    height: auto;
    overflow: visible;
  }
}

@media (max-width: 480px) {
  .bg-layer {
    display: none;
  }

  .tablet-zone {
    min-height: auto;
    padding: 40px 0;
  }
}
