
.header-logo-img,.footer-logo-img{
    width: 100px;
}
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* Container (important for positioning) */
.countryDropdown {
    position: relative;
    cursor: pointer;
    padding: 10px 16px;
    background: #0A1AFF;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
}

/* Submenu base */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
        overflow-y: scroll;
    max-height: 90vh;
    z-index: 1000;
}

/* Links inside submenu */
.submenu span {
    display: block;
    min-width: 225px;
}

.submenu a {
    display: block;
    padding: 10px 14px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

/* Hover effect */
.submenu a:hover {
    background: #f5f7ff;
    color: #eb0029;
}

/* SHOW submenu on hover */
.countryDropdown:hover + .submenu,
.submenu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
      color: #eb0029;
}
.countryDropdown{
    background: transparent;
    border: unset;
    cursor: pointer;
        color: var(--gray-700);
}

.site-nav a, .site-nav button{
    font-weight: 600;
}
.submenu{
    display: block;
}
/* Scrollbar */
.submenu::-webkit-scrollbar {
    width: 6px;
}

.submenu::-webkit-scrollbar-thumb {
    background: #eb0029;
    border-radius: 10px;
}

.submenu::-webkit-scrollbar-track {
    background: #eee;
}
/* search  */
.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

/* Input hidden by default */
.search-input {
    width: 0;
    opacity: 0;
    padding: 8px 12px;
    margin-left: 8px;

    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;

    transition: all 0.3s ease;
}

/* Active state */
.search-box.active .search-input {
    width: 220px;
    opacity: 1;
}
/* footer sticky  */
/* Hide by default (desktop safe) */
.mobile-footer {
    display: none;
}
/* mobile slider  */
/* Hide on desktop */
.mobile-sidebar,
.mobile-overlay {
    display: none;
}
.dest-card-img {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.dest-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Overlay */
.dest-card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.1);
    opacity: 0;
    transition: 0.4s ease;
}

/* Hover Effects */
.dest-card-img:hover img {
    transform: scale(1.12);
}

.dest-card-img:hover::after {
    opacity: 1;
}
/* ─── SHARED UTILITIES ─── */
    .section-label {
      display: inline-flex; align-items: center; gap: 0.5rem;
      font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em;
      color: var(--muted); margin-bottom: 1rem;
    }
    .section-label::before {
      content: ''; display: block;
      width: 24px; height: 1.5px; background: var(--red);
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 900; line-height: 1.1;
      letter-spacing: -0.02em; margin-bottom: 0.6rem;
    }
    .section-title em { color: var(--red); font-style: normal; }

    .section-sub {
      font-size: 0.95rem; color: var(--muted);
      font-weight: 300; line-height: 1.65; max-width: 480px;
    }

    .btn-red {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--red); color: #fff;
      padding: 0.82rem 1.8rem; border-radius: 50px;
      text-decoration: none; font-size: 0.88rem; font-weight: 600;
      box-shadow: 0 6px 20px rgba(232,36,42,0.28);
      transition: background .2s, transform .15s, box-shadow .2s;
    }
    .btn-red:hover { background: var(--red-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(232,36,42,0.38); }

    .btn-outline {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: transparent; color: var(--dark);
      padding: 0.82rem 1.8rem; border-radius: 50px;
      text-decoration: none; font-size: 0.88rem; font-weight: 500;
      border: 1.5px solid var(--border);
      transition: border-color .2s, transform .15s;
    }
    .btn-outline:hover { border-color: var(--dark); transform: translateY(-2px); }

    /* ════════════════════════════════════════
       SECTION 3 — FEATURED ARTICLES
    ════════════════════════════════════════ */
    #articles {
      padding: 7rem 6vw 5rem;
      position: relative;
    }

    #articles .section-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1.5rem;
    }

    /* pill tabs */
    .filter-tabs {
      display: flex; gap: 0.5rem; flex-wrap: wrap;
    }
    .tab {
      padding: 0.45rem 1.1rem; border-radius: 50px; font-size: 0.8rem;
      font-family: 'DM Sans', sans-serif; font-weight: 500; cursor: pointer;
      border: 1.5px solid var(--border); background: transparent; color: var(--muted);
      transition: all .2s;
    }
    .tab.active, .tab:hover { background: var(--dark); color: #fff; border-color: var(--dark); }

    /* grid */
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    /* featured card (first — spans 2 cols) */
    .article-card {
      background: var(--white); border-radius: 20px;
      overflow: hidden; box-shadow: var(--shadow-sm);
      border: 1px solid rgba(255,255,255,0.7);
      transition: transform .25s, box-shadow .25s;
      display: flex; flex-direction: column;
      margin: unset;
    }
    .article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

    .article-card.featured {
      grid-column: span 2;
      flex-direction: row;
    }

    .card-img {
      width: 100%; aspect-ratio: 16/9;
      object-fit: cover; display: block;
      flex-shrink: 0;
    }
    .article-card.featured .card-img {
      width: 48%; aspect-ratio: unset; height: auto;
    }

    .card-body {
      padding: 1.6rem; display: flex; flex-direction: column; flex: 1;
    }

    .card-tag {
      display: inline-block; font-size: 0.7rem; text-transform: uppercase;
      letter-spacing: 0.1em; color: var(--red); font-weight: 600;
      margin-bottom: 0.6rem;
    }

    .card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem; font-weight: 700; line-height: 1.35;
      color: var(--dark); margin-bottom: 0.6rem;
      transition: color .2s;
    }
    .article-card:hover .card-title { color: var(--red); }

    .article-card.featured .card-title { font-size: 1.5rem; }

    .card-excerpt {
      font-size: 0.86rem; color: var(--muted); line-height: 1.6;
      font-weight: 300; flex: 1; margin-bottom: 1.2rem;
    }

    .card-meta {
      display: flex; align-items: center; justify-content: space-between;
      font-size: 0.75rem; color: var(--muted);
    }
    .card-meta-left { display: flex; align-items: center; gap: 0.8rem; }
    .read-time { display: flex; align-items: center; gap: 0.3rem; }
    .read-link {
      font-size: 0.8rem; font-weight: 600; color: var(--red);
      text-decoration: none; display: flex; align-items: center; gap: 0.3rem;
      transition: gap .2s;
    }
    .read-link:hover { gap: 0.6rem; }

    .articles-footer { text-align: center; margin-top: 3rem; }

    /* ════════════════════════════════════════
       SECTION 7 — TRUST / AUTHORITY
    ════════════════════════════════════════ */
    #trust {
      background: var(--dark);
      padding: 6rem 6vw;
      position: relative;
      overflow: hidden;
    }

    /* subtle bg pattern */
    #trust::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle at 20% 50%, rgba(232,36,42,0.08) 0%, transparent 55%),
                        radial-gradient(circle at 80% 20%, rgba(232,36,42,0.05) 0%, transparent 50%);
      pointer-events: none;
    }

    #trust .inner {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: center;
    }

    #trust .section-label { color: rgba(255,255,255,0.4); }
    #trust .section-label::before { background: var(--red); }
    #trust .section-title { color: #fff; }
    #trust .section-sub { color: rgba(255,255,255,0.5); }

    .stats-grid {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
    }

    .stat-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 18px; padding: 2rem 1.5rem;
      text-align: center;
      transition: background .25s, transform .2s, border-color .25s;
      position: relative; overflow: hidden;
    }
    .stat-card::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(232,36,42,0.1) 0%, transparent 70%);
      opacity: 0; transition: opacity .25s;
    }
    .stat-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); border-color: rgba(232,36,42,0.3); }
    .stat-card:hover::before { opacity: 1; }

    .stat-icon { font-size: 2rem; margin-bottom: 0.8rem; display: block; }

    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.6rem; font-weight: 900; color: #fff;
      line-height: 1; margin-bottom: 0.4rem;
      display: block;
    }
    .stat-num span { color: var(--red); }

    .stat-label {
      font-size: 0.82rem; color: rgba(255,255,255,0.5);
      font-weight: 300; letter-spacing: 0.02em;
    }

    /* badges row */
    .trust-badges {
      display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem;
    }
    .trust-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 50px; padding: 0.45rem 1rem;
      font-size: 0.78rem; color: rgba(255,255,255,0.7); font-weight: 400;
    }
    .trust-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; }

    /* ════════════════════════════════════════
       SECTION 5 — INTERNAL FUNNEL
    ════════════════════════════════════════ */
    #funnel {
      padding: 5rem 6vw;
      background: var(--cream-dark);
      position: relative; overflow: hidden;
    }

    #funnel::after {
      content: 'MBBS';
      font-family: 'Playfair Display', serif;
      font-size: 18vw; font-weight: 900;
      color: transparent;
      -webkit-text-stroke: 1.5px rgba(26,26,46,0.05);
      position: absolute; right: -2vw; top: 50%;
      transform: translateY(-50%);
      pointer-events: none; user-select: none;
      line-height: 1;
    }

    #funnel .funnel-inner {
      position: relative; z-index: 1;
      max-width: 860px; margin: 0 auto; text-align: center;
    }

    .funnel-box {
      background: var(--white); border-radius: 28px;
      padding: 4rem 3.5rem;
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(255,255,255,0.9);
      position: relative; overflow: hidden;
    }
    .funnel-box::before {
      content: ''; position: absolute;
      top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--red), var(--red-light));
    }

    .funnel-icon {
      width: 64px; height: 64px; border-radius: 50%;
      background: linear-gradient(135deg, #fff5f5, #ffe4e4);
      border: 2px solid rgba(232,36,42,0.15);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem; margin: 0 auto 1.5rem;
    }

    .funnel-box h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 900; line-height: 1.2;
      letter-spacing: -0.02em; margin-bottom: 0.9rem;
    }
    .funnel-box h2 em { color: var(--red); font-style: normal; }

    .funnel-box p {
      font-size: 1rem; color: var(--muted); line-height: 1.7;
      font-weight: 300; max-width: 500px; margin: 0 auto 2rem;
    }

    .funnel-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    .funnel-pills {
      display: flex; flex-wrap: wrap; gap: 0.6rem;
      justify-content: center; margin-top: 1.8rem;
    }
    .funnel-pill {
      background: var(--cream); border-radius: 50px;
      padding: 0.4rem 1rem; font-size: 0.78rem; color: var(--muted);
      border: 1px solid var(--border);
    }
    .funnel-pill strong { color: var(--dark); font-weight: 500; }

    /* ════════════════════════════════════════
       SECTION 8 — FAQ
    ════════════════════════════════════════ */
    #faq {
      padding: 7rem 6vw;
      position: relative;
    }

    #faq .faq-inner {
      display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start;
    }

    #faq .faq-left { position: sticky; top: 7rem; }

    .faq-decoration {
      width: 80px; height: 80px; border-radius: 20px;
      background: linear-gradient(135deg, #fff5f5, #ffe4e4);
      border: 1.5px solid rgba(232,36,42,0.12);
      display: flex; align-items: center; justify-content: center;
      font-size: 2rem; margin-bottom: 1.8rem;
      box-shadow: var(--shadow-sm);
    }

    .faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

    .faq-item {
      background: var(--white); border-radius: 16px;
      border: 1.5px solid rgba(255,255,255,0.9);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      transition: box-shadow .2s;
    }
    .faq-item:hover { box-shadow: var(--shadow-md); }

    .faq-q {
      width: 100%; text-align: left; background: none; border: none;
      padding: 1.3rem 1.5rem;
      display: flex; align-items: center; justify-content: space-between; gap: 1rem;
      cursor: pointer; font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem; font-weight: 500; color: var(--dark);
      line-height: 1.4;
    }

    .faq-chevron {
      flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
      background: var(--cream); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.7rem; color: var(--muted);
      transition: transform .3s, background .2s;
    }
    .faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--red); color: #fff; border-color: var(--red); }
    .faq-item.open .faq-q { color: var(--red); }

    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height .35s ease, padding .3s;
      padding: 0 1.5rem;
      font-size: 0.9rem; color: var(--muted); line-height: 1.7; font-weight: 300;
    }
    .faq-item.open .faq-a { max-height: 300px; padding: 0 1.5rem 1.3rem; }

    .faq-schema-note {
      margin-top: 1.5rem; padding: 1rem 1.2rem;
      background: #f0fdf4; border: 1px solid #bbf7d0;
      border-radius: 12px; font-size: 0.78rem; color: #166534;
      display: flex; gap: 0.5rem; align-items: flex-start; line-height: 1.5;
    }
      .article-card {
        padding: 0rem;
    }
    .elt65{
        width: 50%;
    }
/* orb section  */
     .orb-section {
      background: #eeeae4;
      min-height: 100vh;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      padding: 4rem 2rem;
    }

    /* ghost watermark */
    .orb-section::before {
      content: 'GUIDANCE';
      position: absolute;
      font-family: 'Playfair Display', serif;
      font-size: clamp(6rem, 14vw, 13rem);
      font-weight: 900;
      color: transparent;
      -webkit-text-stroke: 1.5px rgba(26,26,46,0.05);
      pointer-events: none;
      user-select: none;
      white-space: nowrap;
      left: 50%; top: 50%;
      transform: translate(-50%, -50%);
      z-index: 0;
    }
     .orb-arena {
      position: relative;
      width: 520px;
      height: 520px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 5;
    }

    /* question pills */
    .q-pill {
      position: absolute;
      background: #ffffff;
      border: 1.5px solid rgba(26,26,46,0.1);
      border-radius: 50px;
      padding: 0.48rem 1.15rem;
      font-size: 0.78rem;
      font-weight: 500;
      color: #1a1a2e;
      white-space: nowrap;
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
      pointer-events: none;
      transition:
        opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.65s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .q-pill.evaporate {
      opacity: 0 !important;
      transform: scale(1.4) translateY(-20px) !important;
      filter: blur(8px) !important;
    }

    /* 12 unique float keyframes */
    @keyframes f1  { 0%,100%{transform:translate(-50%,-50%) translate(0,0) rotate(-2deg)}   50%{transform:translate(-50%,-50%) translate(5px,-10px) rotate(2deg)} }
    @keyframes f2  { 0%,100%{transform:translate(-50%,-50%) translate(0,0) rotate(1deg)}    50%{transform:translate(-50%,-50%) translate(-8px,-7px) rotate(-1deg)} }
    @keyframes f3  { 0%,100%{transform:translate(-50%,-50%) translate(0,0) rotate(-1deg)}   50%{transform:translate(-50%,-50%) translate(6px,8px) rotate(3deg)} }
    @keyframes f4  { 0%,100%{transform:translate(-50%,-50%) translate(0,0) rotate(2deg)}    50%{transform:translate(-50%,-50%) translate(-5px,-12px) rotate(-2deg)} }
    @keyframes f5  { 0%,100%{transform:translate(-50%,-50%) translate(0,0) rotate(-3deg)}   50%{transform:translate(-50%,-50%) translate(9px,-6px) rotate(1deg)} }
    @keyframes f6  { 0%,100%{transform:translate(-50%,-50%) translate(0,0) rotate(1deg)}    50%{transform:translate(-50%,-50%) translate(-6px,9px) rotate(-3deg)} }
    @keyframes f7  { 0%,100%{transform:translate(-50%,-50%) translate(0,0) rotate(-2deg)}   50%{transform:translate(-50%,-50%) translate(7px,-8px) rotate(2deg)} }
    @keyframes f8  { 0%,100%{transform:translate(-50%,-50%) translate(0,0) rotate(3deg)}    50%{transform:translate(-50%,-50%) translate(-9px,-5px) rotate(-1deg)} }
    @keyframes f9  { 0%,100%{transform:translate(-50%,-50%) translate(0,0) rotate(-1deg)}   50%{transform:translate(-50%,-50%) translate(4px,11px) rotate(2deg)} }
    @keyframes f10 { 0%,100%{transform:translate(-50%,-50%) translate(0,0) rotate(2deg)}    50%{transform:translate(-50%,-50%) translate(-7px,-9px) rotate(-2deg)} }
    @keyframes f11 { 0%,100%{transform:translate(-50%,-50%) translate(0,0) rotate(-3deg)}   50%{transform:translate(-50%,-50%) translate(8px,6px) rotate(1deg)} }
    @keyframes f12 { 0%,100%{transform:translate(-50%,-50%) translate(0,0) rotate(1deg)}    50%{transform:translate(-50%,-50%) translate(-4px,-11px) rotate(-3deg)} }

    /* CENTER BUTTON */
    .orb-btn {
      position: relative;
      z-index: 10;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: #e8242a;
      border: none;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.25rem;
      box-shadow:
        0 0 0 18px rgba(232,36,42,0.08),
        0 0 0 36px rgba(232,36,42,0.04),
        0 20px 50px rgba(232,36,42,0.35);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      text-decoration: none;
    }

    .orb-btn:hover {
      transform: scale(1.07);
      box-shadow:
        0 0 0 24px rgba(232,36,42,0.1),
        0 0 0 48px rgba(232,36,42,0.05),
        0 24px 60px rgba(232,36,42,0.45);
    }

    .orb-btn:active { transform: scale(0.97); }

    .orb-emoji {
      font-size: 1.6rem;
      line-height: 1;
      margin-bottom: 4px;
    }

    .orb-label {
      font-family: 'Playfair Display', serif;
      font-size: 0.82rem;
      font-weight: 700;
      color: #ffffff;
      text-align: center;
      line-height: 1.3;
      letter-spacing: 0.01em;
    }

    .orb-sub {
      font-size: 0.58rem;
      color: rgba(255,255,255,0.7);
      text-align: center;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-top: 2px;
    }

    /* pulse rings */
    .orb-btn::before,
    .orb-btn::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      border: 1.5px solid rgba(232,36,42,0.4);
      animation: ringPulse 2.6s ease-out infinite;
      pointer-events: none;
    }
    .orb-btn::before { width: 190px; height: 190px; animation-delay: 0s; }
    .orb-btn::after  { width: 224px; height: 224px; animation-delay: 0.9s; }

    @keyframes ringPulse {
      0%   { opacity: 0.8; transform: scale(1); }
      100% { opacity: 0;   transform: scale(1.22); }
    }

    /* bottom CTA */
    .orb-cta {
      margin-top: 3rem;
      text-align: center;
      position: relative;
      z-index: 5;
    }

    .orb-cta p {
      font-size: 0.85rem;
      color: #7a7a8a;
      font-weight: 300;
      margin-bottom: 1rem;
      letter-spacing: 0.01em;
    }

    .orb-cta a {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #1a1a2e;
      color: #fff;
      padding: 0.8rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 600;
      box-shadow: 0 6px 20px rgba(26,26,46,0.2);
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }

    .orb-cta a:hover {
      background: #2d2d45;
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(26,26,46,0.28);
    }

    /* dot decoration */
    .dots {
      position: absolute;
      bottom: 3rem;
      right: 5vw;
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 7px;
      opacity: 0.12;
      pointer-events: none;
      z-index: 1;
    }
    .dots span {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: #1a1a2e;
      display: block;
    }

    @media (max-width: 600px) {
      .orb-arena { width: 340px; height: 340px; }
      .orb-btn   { width: 130px; height: 130px; }
      .orb-btn::before { width: 155px; height: 155px; }
      .orb-btn::after  { width: 182px; height: 182px; }
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 960px) {
        .elt65{
            width: 100%;
        }
      .articles-grid { grid-template-columns: repeat(2, 1fr); }
      .article-card.featured { grid-column: span 2; flex-direction: column; }
      .article-card.featured .card-img { width: 100%; aspect-ratio: 16/9; }
      #trust .inner { grid-template-columns: 1fr; gap: 3rem; }
      .stats-grid { grid-template-columns: repeat(3,1fr); }
      #faq .faq-inner { grid-template-columns: 1fr; gap: 3rem; }
      #faq .faq-left { position: static; }
    }
    @media (max-width: 640px) {
      .articles-grid { grid-template-columns: 1fr; }
      .article-card.featured { grid-column: span 1; }
      .stats-grid { grid-template-columns: 1fr; }
      #articles, #faq { padding: 5rem 1.5rem; }
      #trust, #funnel { padding: 4rem 1.5rem; }
      .funnel-box { padding: 2.5rem 1.5rem; }

    }
/* Mobile Only */
@media (max-width: 768px) {
    
    .site-footer{
            margin-bottom: 65px;
    }

    .mobile-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 65px;

        display: flex;
        justify-content: space-around;
        align-items: center;

        background: #ffffff;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.05);

        z-index: 9999;
        padding-bottom: env(safe-area-inset-bottom);
    }

    .mobile-footer .nav-item {
        flex: 1;
        text-align: center;
        text-decoration: none;

        color: #6b7280; /* gray */
        font-size: 11px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        transition: 0.3s ease;
    }

    .mobile-footer .nav-item svg {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        margin-bottom: 3px;
    }

    /* Active / Highlight */
    .mobile-footer .nav-item.active {
        color: #e11d48; /* red (matches your CTA) */
    }

    .mobile-footer .nav-item:hover {
        color: #e11d48;
    }
    /* Mobile Only */
    /* Overlay */
    .mobile-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
        z-index: 9998;
        height: 100vh;
    }

    /* Sidebar */
    .mobile-sidebar {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 94vh;

        background: #ffffff;
        box-shadow: 2px 0 20px rgba(0,0,0,0.1);

        transform: translateX(105%);
        transition: transform 0.3s ease;

        z-index: 9999;
        padding: 20px;
        overflow-y: scroll;
    }
    .mobile-nav a{
        display: flex;
    }
    .mobile-nav a svg{
      width: 20px;
        height: 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        margin-bottom: 3px;
    }

    /* Active State */
    .mobile-sidebar.active {
        transform: translateX(0);
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Close Button */
    .close-btn {
        background: none;
        border: none;
        font-size: 22px;
        margin-bottom: 20px;
        cursor: pointer;
    }

    /* Nav Links */
    .mobile-nav a,
    .mobile-dropdown button {
        display: block;
        width: 100%;
        padding: 12px 0;
        text-decoration: none;
        color: #111827;
        font-size: 15px;
        border-bottom: 1px solid #eee;
        text-align: left;
        background: none;
        border: none;
        cursor: pointer;
    }
    .submenu {
    position: relative;
    top: 100%;
    left: 0;
    box-shadow: unset;
    background: #fff;
 
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    overflow-y: scroll;
    max-height: 100vh;
    z-index: 1000;
}

    /* Dropdown */
    .mobile-dropdown .submenu {
        display: none;
        padding-left: 10px;
    }

    .mobile-dropdown.active .submenu {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .mobile-dropdown .submenu a {
        font-size: 14px;
        color: #6b7280;
        padding: 8px 0;
    }


   
}

/* google review starts  */
   



        /* HEADING */
        .sbr-heading {
            text-align: center;
            padding: 0 20px;
            margin-top: 55px;
        }

        .sbr-heading h2 {
       
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            letter-spacing: -.02em;
            line-height: 1.1;
        }

        .sbr-heading h2 span {
            color: var(--clr-accent);
        }

        .sbr-heading p {
            margin-top: 8px;
      font-size: 30px;
            color:black;
            font-weight: 300;
        }

        /* CAROUSEL */
        .sbr-overflow {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .sbr-overflow::before,
        .sbr-overflow::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 110px;
            z-index: 2;
            pointer-events: none;
        }

        .sbr-overflow::before {
            left: 0;
            background: linear-gradient(to right, var(--clr-bg), transparent);
        }

        .sbr-overflow::after {
            right: 0;
            background: linear-gradient(to left, var(--clr-bg), transparent);
        }

        .sbr-track {
        margin: 50px 0px;
    display: flex;
    gap: 20px;
            animation: sbr-rtl 30s linear infinite;
            width: max-content;
          
            will-change: transform;
        }

        .sbr-track:hover {
            animation-play-state: paused;
        }

        @keyframes sbr-rtl {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        /* CARD */
        .sbr-card {
            width: 500px;
            flex-shrink: 0;
            /* background: var(--clr-card); */
            border: 1px solid var(--clr-border);
            border-radius: 18px;
            padding: 22px 20px 20px;
            box-shadow: 0 2px 18px rgba(0, 0, 0, .07);
            display: flex;
            flex-direction: column;
            gap: 13px;
            transition: box-shadow .25s, transform .25s;
            cursor: default;
        }

        .sbr-card:hover {
            box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
            transform: translateY(-3px);
        }

        .sbr-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .sbr-reviewer {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .sbr-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
          
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
            flex-shrink: 0;
        }

        .sbr-meta {
            display: flex;
            flex-direction: column;
            gap: 1px;
        }

        .sbr-name {
            font-size: .88rem;
            font-weight: 500;
        }

        .sbr-date {
            font-size: .74rem;
            color: var(--clr-muted);
            font-weight: 300;
        }

        .sbr-g {
            width: 22px;
            height: 22px;
            flex-shrink: 0;
        }

        .sbr-stars-row {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .sbr-stars {
            display: flex;
            gap: 2px;
        }

        .sbr-stars i {
            font-style: normal;
            font-size: 1rem;
            color: #f7b603;
        }

        .sbr-stars i.sbr-empty {
            color: #d5cfc5;
        }

        .sbr-check {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #4285f4;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .sbr-check svg {
            width: 9px;
            height: 9px;
        }

        .sbr-body {
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .sbr-text {
            font-size: .82rem;
            line-height: 1.55;
            color: #3d3830;
            flex: 1;
        }

        .sbr-thumb {
            width: 58px;
            height: 43px;
            border-radius: 10px;
            object-fit: cover;
            flex-shrink: 0;
            border: 1px solid var(--clr-border);
        }

        .sbr-more {
            font-size: .77rem;
            color: var(--clr-accent);
            font-weight: 500;
            display: inline-block;
            margin-top: 3px;
            cursor: pointer;
        }

        /* CTA */
        .sbr-cta-wrap {
            text-align: center;
       
        }

        .sbr-cta {
            display: inline-block;
            padding: 13px 36px;
            border: 1.5px solid var(--clr-border);
            border-radius: 100px;
            background: #fff;
      
            font-size: .9rem;
            font-weight: 500;
            color: var(--clr-text);
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
            transition: background .2s, color .2s, box-shadow .2s, transform .15s;
            text-decoration: none;
        }

        .sbr-cta:hover {
            background: var(--clr-text);
            color: #fff;
            box-shadow: 0 6px 20px rgba(0, 0, 0, .14);
            transform: translateY(-2px);
        }
  
/* google reviews ends  */



