* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #08111f;
  padding-top: 90px;
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
.cta-btn {
  cursor: pointer;
}

.container {
  max-width: 1150px;
  margin: auto;
  padding: 20px;
}

.card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 20px;
}

.business-types{

    display: inline;

    gap: 25px;

    flex-wrap: wrap;
}

.type-card{
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 30px;

    background: rgba(18, 24, 38, 0.85);

    border: 1px solid rgba(255,255,255,0.08);

    color: white;
    font-size: 32px;
    font-weight: 700;

    backdrop-filter: blur(10px);

    transition: 0.3s ease;
}

.type-card:hover{
    transform: translateY(-6px);
    border-color: #6366f1;
    box-shadow: 0 0 30px rgba(99,102,241,0.25);
}
/* =========================
   NAVBAR
========================= */

.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    background: rgba(5, 10, 25, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo{
    display: none;
}


.navbar nav{
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.navbar nav a,
.nav-drop-trigger{
    color: #d1d5db;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.navbar nav a:hover,
.nav-drop-trigger:hover{
    color: #ff6b3d;
}

.nav-dropdown{
    position: relative;
}

.nav-dropdown::before{
    content: "";
    position: absolute;
    left: -18px;
    right: -18px;
    top: 100%;
    height: 10px;
}

.nav-drop-trigger{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
}

.nav-dropdown-menu{
    position: absolute;
    z-index: 1001;
    top: calc(100% + 10px);
    left: 50%;
    width: 320px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 22px;
    background:
      radial-gradient(circle at top right, rgba(255,107,61,0.16), transparent 42%),
      rgba(5, 10, 25, 0.98);
    box-shadow: 0 28px 90px rgba(0,0,0,0.48), 0 16px 42px rgba(255,107,61,0.08);
    backdrop-filter: blur(20px);
    transform: translate(-50%, 8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
}

.navbar nav .nav-dropdown-menu a{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 800;
}

.navbar nav .nav-dropdown-menu a::before{
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 34px;
    border-radius: 11px;
    color: #fff;
    background: linear-gradient(135deg, #ff6b3d, #ff9d5f);
    box-shadow: 0 10px 24px rgba(255,107,61,0.24);
    font-size: 11px;
    font-weight: 900;
}

.navbar nav .nav-dropdown-menu a:nth-child(1)::before{content:"PM"}
.navbar nav .nav-dropdown-menu a:nth-child(2)::before{content:"SEO"}
.navbar nav .nav-dropdown-menu a:nth-child(3)::before{content:"SM"}
.navbar nav .nav-dropdown-menu a:nth-child(4)::before{content:"BD"}
.navbar nav .nav-dropdown-menu a:nth-child(5)::before{content:"WEB"}
.navbar nav .nav-dropdown-menu a:nth-child(6)::before{content:"GR"}

.navbar nav .nav-dropdown-menu a + a{
    margin-top: 4px;
}

.navbar nav .nav-dropdown-menu a:hover{
    color: #fff;
    background: rgba(255,255,255,0.075);
    transform: translateX(3px);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu{
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

body{
    padding-top: 90px;
}

/* =========================
   SHARED PROFILE PILL
========================= */

.shared-profile-root{
    position: relative;
    z-index: 1002;
    font-family: Inter, Arial, sans-serif;
}

.navbar > .shared-profile-root{
    position: absolute;
    right: 36px;
    top: 50%;
    transform: translateY(-50%);
}

.shared-profile-auth[hidden],
.shared-profile-menu[hidden]{
    display: none !important;
}

.shared-profile-auth{
    display: flex;
    align-items: center;
    gap: 10px;
}

.shared-profile-auth a{
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    background: rgba(255,255,255,.075);
    color: #dbe4ff;
    font-size: 13px;
    font-weight: 800;
}

.shared-profile-auth a:hover{
    color: #fff;
    border-color: rgba(255,107,61,.38);
    background: rgba(255,107,61,.14);
}

.shared-profile-menu{
    position: relative;
}

.shared-profile-trigger{
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 13px 6px 7px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #fff;
    box-shadow: 0 18px 44px rgba(0,0,0,.22);
    backdrop-filter: blur(14px);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.shared-profile-trigger:hover,
.shared-profile-menu.open .shared-profile-trigger{
    transform: translateY(-2px);
    border-color: rgba(255,107,61,.48);
    background: rgba(255,107,61,.15);
}

.shared-profile-avatar{
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg,#ff6b35,#ff9d5f);
    background-size: cover;
    background-position: center;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

.shared-profile-avatar-lg{
    width: 48px;
    height: 48px;
    min-width: 48px;
}

.shared-profile-label{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.12;
}

.shared-profile-label strong,
.shared-profile-head strong{
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shared-profile-label strong{
    font-size: 13px;
}

.shared-profile-label small{
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #b8c5d9;
    font-size: 11px;
    font-weight: 800;
}

.shared-profile-chevron{
    color: #b8c5d9;
    font-size: 18px;
    line-height: 1;
    transition: transform .25s ease;
}

.shared-profile-menu.open .shared-profile-chevron{
    transform: rotate(180deg);
}

.shared-profile-dropdown{
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 280px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 22px;
    background:
      radial-gradient(circle at top right, rgba(255,107,61,.16), transparent 42%),
      rgba(5,10,25,.98);
    box-shadow: 0 28px 90px rgba(0,0,0,.48);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .22s ease, transform .22s ease;
}

.shared-profile-menu.open .shared-profile-dropdown{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.shared-profile-head{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    margin-bottom: 6px;
}

.shared-profile-head strong{
    display: block;
    color: #fff;
    font-size: 14px;
}

.shared-profile-head small{
    display: block;
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #93a4bd;
    font-size: 12px;
}

.shared-profile-dropdown a,
.shared-profile-dropdown button{
    width: 100%;
    min-height: 43px;
    display: flex;
    align-items: center;
    padding: 11px 12px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: #dbe4ff;
    font: inherit;
    font-size: 13px;
    font-weight: 850;
    text-align: left;
}

.shared-profile-dropdown a:hover,
.shared-profile-dropdown button:hover{
    background: rgba(255,255,255,.075);
    color: #fff;
}

.shared-profile-dropdown .shared-profile-logout{
    color: #fecaca;
}

/* Mobile */

@media(max-width:768px){

    .navbar{
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .navbar nav{
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .nav-dropdown{
        width: 100%;
        text-align: center;
    }

    .nav-dropdown::before{
        display: none;
    }

    .nav-drop-trigger{
        justify-content: center;
    }

    .nav-dropdown-menu{
        position: static;
        width: 100%;
        margin-top: 12px;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        background: rgba(255,255,255,0.05);
    }

    .navbar > .shared-profile-root{
        position: static;
        transform: none;
        align-self: center;
        margin-top: 2px;
    }

    .shared-profile-dropdown{
        right: 50%;
        transform: translate(50%, 8px);
    }

    .shared-profile-menu.open .shared-profile-dropdown{
        transform: translate(50%, 0);
    }

}
/* =========================
   TRUSTED BUSINESS SECTION
========================= */


/* ===============================
   HIRELANCE MOBILE RESPONSIVE FIX
   Paste at END of style.css
================================ */

@media (max-width: 900px) {

  body {
    overflow-x: hidden;
  }

  .navbar,
  header,
  .nav {
    padding: 14px 18px !important;
  }

  .nav-links,
  .navbar nav,
  .menu {
    gap: 14px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  .nav-actions,
  .header-actions {
    width: 100% !important;
    justify-content: center !important;
    margin-top: 12px !important;
    flex-wrap: wrap !important;
  }

  .hero,
  .hero-section {
    min-height: auto !important;
    padding: 70px 20px 120px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 35px !important;
    text-align: left !important;
  }

  .hero-content,
  .hero-text {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero h1,
  .hero-title {
    font-size: 42px !important;
    line-height: 1.1 !important;
  }

  .hero p,
  .hero-subtitle {
    font-size: 16px !important;
    line-height: 1.7 !important;
  }

  .hero-buttons,
  .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }

  .hero-buttons a,
  .hero-actions a,
  .hero-buttons button,
  .hero-actions button {
    width: 100% !important;
    text-align: center !important;
  }

  .hero-visual,
  .dashboard-preview,
  .hero-card {
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
  }

  .floating-cta,
  .bottom-cta,
  .lead-popup {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: calc(100% - 32px) !important;
    margin: 25px auto 0 !important;
  }

  .floating-cta {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    text-align: center !important;
  }

  .floating-cta .btn,
  .floating-cta a,
  .floating-cta button {
    width: 100% !important;
  }

  .cards,
  .service-grid,
  .expert-grid,
  .features-grid,
  .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  section {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .whatsapp-float,
  .whatsapp-btn {
    right: 18px !important;
    bottom: 18px !important;
    width: 58px !important;
    height: 58px !important;
  }

  footer,
  .footer {
    text-align: center !important;
  }

  .footer-grid,
  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }
}

@media (max-width: 520px) {

  .hero,
  .hero-section {
    padding-top: 45px !important;
  }

  .hero h1,
  .hero-title {
    font-size: 34px !important;
  }

  .hero p,
  .hero-subtitle {
    font-size: 15px !important;
  }

  .brand,
  .logo {
    font-size: 18px !important;
  }

  .nav-links a,
  .navbar a {
    font-size: 13px !important;
  }

  .customer-support,
  .free-audit,
  .logout-btn,
  .btn {
    padding: 12px 16px !important;
    font-size: 14px !important;
  }

  .dashboard-preview,
  .hero-card {
    overflow: hidden !important;
    border-radius: 22px !important;
  }
}

/* ===============================
   SITE-WIDE MOBILE POLISH
================================ */

@media (max-width: 900px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    padding-top: 74px;
  }

  .container {
    width: 100%;
    padding: 16px;
  }

  .navbar {
    min-height: 66px;
    padding: 10px 14px !important;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    overflow: visible;
  }

  .navbar .logo {
    display: none;
  }

  .navbar nav {
    width: 100%;
    display: flex;
    gap: 8px !important;
    align-items: center;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .navbar nav::-webkit-scrollbar {
    display: none;
  }

  .navbar nav a,
  .nav-drop-trigger {
    flex: 0 0 auto;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.08);
    color: #dbe4ff;
    font-size: 14px;
    white-space: nowrap;
  }

  .nav-dropdown {
    width: auto;
    text-align: left;
    flex: 0 0 auto;
  }

  .nav-dropdown-menu {
    position: fixed;
    top: 70px;
    left: 10px;
    right: 10px;
    width: auto;
    max-height: min(72vh, 430px);
    overflow-y: auto;
    margin-top: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    box-shadow: 0 24px 70px rgba(0,0,0,.45);
    background:
      radial-gradient(circle at top right, rgba(255,107,61,.16), transparent 42%),
      rgba(5,10,25,.98);
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .navbar nav .nav-dropdown-menu a {
    width: 100%;
    justify-content: flex-start;
  }

  .card {
    padding: 18px;
    border-radius: 18px;
  }

  .card-grid,
  .grid,
  .row,
  .split {
    grid-template-columns: 1fr !important;
  }

  button,
  .cta-btn {
    min-height: 44px;
  }

  img,
  video,
  iframe,
  canvas,
  svg {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  body {
    padding-top: 70px;
  }

  .navbar {
    min-height: 62px;
    padding-inline: 10px !important;
  }

  .navbar nav a,
  .nav-drop-trigger {
    min-height: 40px;
    padding-inline: 10px;
    font-size: 13px;
  }

  .nav-dropdown-menu {
    top: 66px;
  }
}
