/*
Theme Name: RIDDHISH Consulting
Theme URI: https://riddhishconsulting.com
Description: Professional corporate financial services one-page theme for RIDDHISH Consulting
Version: 1.0
Author: RIDDHISH Consulting
Author URI: https://riddhishconsulting.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: riddhish-consulting
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* =========================================================
       RESET & BASE
    ========================================================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:    #0B1628;
      --teal:    #00E5C3;
      --teal-lt: #99F6E4;
      --white:   #FFFFFF;
      --slate-50:  #F8FAFC;
      --slate-100: #F1F5F9;
      --slate-300: #CBD5E1;
      --slate-400: #94A3B8;
      --slate-500: #64748B;
      --slate-600: #475569;
      --slate-800: #1E293B;
      --blue-600:  #2563EB;
      --radius-xl: 24px;
      --radius-lg: 16px;
      --radius-md: 12px;
      --font-display: 'Outfit', sans-serif;
      --font-body:    'Plus Jakarta Sans', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--white);
      color: var(--slate-600);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    @media (min-width: 768px) { .container { padding: 0 48px; } }

    /* =========================================================
       NAVBAR
    ========================================================= */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 24px 0;
      transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
    }

    #navbar.scrolled {
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 1px 12px rgba(0,0,0,0.08);
      padding: 16px 0;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
  .nav-right {
      display: flex;
      align-items: center;
	  flex-direction:row;
      gap: 32px;
    }
    .nav-logo {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.4rem;
      letter-spacing: -0.02em;
      color: var(--white);
      transition: color 0.3s;
    }

    .nav-logo span { color: var(--teal); }
    #navbar.scrolled .nav-logo { color: var(--navy); }

    .nav-links {
      display: none;
      gap: 32px;
      align-items: center;
    }

    @media (min-width: 768px) { .nav-links { display: flex; } }

    .nav-links a {
      font-size: 0.875rem;
      font-weight: 500;
      color: rgba(255,255,255,0.85);
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--teal); }
    #navbar.scrolled .nav-links a { color: var(--slate-600); }
    #navbar.scrolled .nav-links a:hover { color: var(--teal); }

    .nav-cta {
      display: none;
      font-size: 0.875rem;
      font-weight: 600;
      padding: 10px 22px;
      border-radius: 8px;
      border: 2px solid var(--white);
      color: var(--navy);
      background: var(--white);
      cursor: pointer;
      transition: all 0.2s;
    }

    .nav-cta:hover { background: transparent; color: var(--white); }
    #navbar.scrolled .nav-cta { border-color: var(--navy); color: var(--white); background: var(--navy); }
    #navbar.scrolled .nav-cta:hover { background: var(--slate-800); border-color: var(--slate-800); }

    @media (min-width: 768px) { .nav-cta { display: inline-block; } }

    .nav-hamburger {
      display: flex;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }

    @media (min-width: 768px) { .nav-hamburger { display: none; } }

    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: background 0.3s, transform 0.3s;
    }

    #navbar.scrolled .nav-hamburger span { background: var(--navy); }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      position: absolute;
      top: 100%; left: 0; right: 0;
      background: var(--white);
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      padding: 24px;
      flex-direction: column;
      gap: 0;
    }

    .mobile-menu.open { display: flex; }

    .mobile-menu a {
      padding: 14px 0;
      font-weight: 500;
      color: var(--navy);
      border-bottom: 1px solid var(--slate-100);
      font-size: 0.95rem;
    }

    .mobile-menu a:last-child { border-bottom: none; }
    .mobile-menu a:hover { color: var(--teal); }

    .mobile-menu .mobile-cta {
      margin-top: 16px;
      padding: 14px;
      text-align: center;
      background: var(--navy);
      color: var(--white);
      border-radius: 8px;
      font-weight: 600;
      border-bottom: none;
    }

    .mobile-menu .mobile-cta:hover { background: var(--slate-800); color: var(--white); }

    /* =========================================================
       HERO
    ========================================================= */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: var(--navy);
      color: var(--white);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-bg-img {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1557683311-eac922347aa1?q=80&w=2829&auto=format&fit=crop');
      background-size: cover;
      background-position: center;
      opacity: 0.08;
      mix-blend-mode: overlay;
    }

    .hero-bg-gradient {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(11,22,40,0.75) 0%, rgba(11,22,40,1) 100%);
    }

    .hero-orb1 {
      position: absolute;
      top: 10%;
      right: -15%;
      width: 700px; height: 700px;
      border-radius: 50%;
      background: var(--teal);
      filter: blur(120px);
      opacity: 0.15;
      animation: pulse1 9s ease-in-out infinite;
    }

    .hero-orb2 {
      position: absolute;
      bottom: -15%;
      left: -15%;
      width: 550px; height: 550px;
      border-radius: 50%;
      background: var(--blue-600);
      filter: blur(100px);
      opacity: 0.15;
      animation: pulse2 11s ease-in-out infinite;
    }

    @keyframes pulse1 {
      0%,100% { transform: scale(1); opacity: 0.12; }
      50%      { transform: scale(1.2); opacity: 0.22; }
    }

    @keyframes pulse2 {
      0%,100% { transform: scale(1); opacity: 0.12; }
      50%      { transform: scale(1.3); opacity: 0.18; }
    }

    .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 900px;
      padding: 120px 24px 80px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      border-radius: 999px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.12);
      color: var(--teal);
      font-size: 0.875rem;
      font-weight: 500;
      margin-bottom: 32px;
      animation: fadeUp 0.6s 0.2s both;
    }

    .hero-badge svg { width: 16px; height: 16px; flex-shrink: 0; }

    .hero-h1 {
      font-family: var(--font-display);
      font-size: clamp(2.6rem, 7vw, 5.5rem);
      font-weight: 700;
      line-height: 1.08;
      letter-spacing: -0.02em;
      margin-bottom: 24px;
      animation: fadeUp 0.7s 0.3s both;
    }

    .hero-h1 .accent {
      background: linear-gradient(90deg, var(--teal), var(--teal-lt));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      font-size: clamp(1rem, 2.5vw, 1.2rem);
      color: var(--slate-300);
      max-width: 580px;
      margin: 0 auto 40px;
      line-height: 1.7;
      animation: fadeUp 0.7s 0.4s both;
    }

    .hero-buttons {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      animation: fadeUp 0.7s 0.5s both;
    }

    @media (min-width: 480px) {
      .hero-buttons { flex-direction: row; justify-content: center; }
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 15px 32px;
      font-size: 0.95rem;
      font-weight: 600;
      font-family: var(--font-body);
      border-radius: 10px;
      background: var(--teal);
      color: var(--navy);
      border: none;
      cursor: pointer;
      transition: all 0.2s;
      white-space: nowrap;
    }

    .btn-primary:hover { background: var(--teal-lt); transform: translateY(-1px); }

    .btn-primary svg { width: 18px; height: 18px; transition: transform 0.2s; }
    .btn-primary:hover svg { transform: translateX(3px); }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 15px 32px;
      font-size: 0.95rem;
      font-weight: 600;
      font-family: var(--font-body);
      border-radius: 10px;
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,0.2);
      cursor: pointer;
      transition: all 0.2s;
      white-space: nowrap;
    }

    .btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }

    .hero-scroll {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.4);
      animation: fadeIn 1s 1.5s both;
    }

    .hero-scroll span {
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      font-weight: 600;
    }

    .scroll-line {
      width: 1px;
      height: 48px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
      animation: scrollBounce 1.5s ease-in-out infinite;
    }

    @keyframes scrollBounce {
      0%,100% { transform: translateY(0); opacity: 1; }
      50%      { transform: translateY(8px); opacity: 0.5; }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    /* =========================================================
       SECTIONS — SHARED
    ========================================================= */
    section { padding: 96px 0; }

    @media (min-width: 768px) { section { padding: 128px 0; } }

    .eyebrow {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--teal);
      margin-bottom: 16px;
      display: block;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      color: var(--navy);
      line-height: 1.15;
      letter-spacing: -0.02em;
    }

    .section-sub {
      font-size: 1.1rem;
      color: var(--slate-500);
      margin-top: 16px;
      line-height: 1.7;
    }

    /* =========================================================
       SERVICES
    ========================================================= */
    #services { background: var(--slate-50); }

    .services-header { max-width: 680px; margin-bottom: 64px; }

    .services-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    @media (min-width: 640px)  { .services-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .services-grid { grid-template-columns: 1fr 1fr 1fr; } }

    .service-card {
      background: var(--white);
      padding: 32px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--slate-100);
      box-shadow: 0 1px 8px rgba(0,0,0,0.04);
      transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
      display: flex;
      flex-direction: column;
    }

    .service-card:hover {
      box-shadow: 0 12px 40px rgba(0,0,0,0.1);
      border-color: rgba(0,229,195,0.3);
      transform: translateY(-4px);
    }

    .service-icon {
      width: 56px; height: 56px;
      border-radius: 12px;
      background: var(--slate-50);
      border: 1px solid var(--slate-100);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      transition: background 0.3s, border-color 0.3s;
    }

    .service-card:hover .service-icon {
      background: var(--navy);
      border-color: var(--navy);
    }

    .service-icon svg { width: 26px; height: 26px; color: var(--navy); transition: color 0.3s; }
    .service-card:hover .service-icon svg { color: var(--teal); }

    .service-title {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 12px;
      transition: color 0.3s;
    }

    .service-card:hover .service-title { color: var(--teal); }

    .service-desc {
      font-size: 0.9rem;
      color: var(--slate-500);
      line-height: 1.7;
    }

    /* =========================================================
       ABOUT
    ========================================================= */
    #about { background: var(--white); }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 64px;
      align-items: center;
    }

    @media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 96px; } }

    .about-img-wrap {
      position: relative;
    }

    .about-img {
      aspect-ratio: 4/5;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: 0 24px 64px rgba(0,0,0,0.15);
    }

    .about-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .about-stat-card {
      position: absolute;
      bottom: -32px;
      right: -16px;
      background: var(--navy);
      color: var(--white);
      padding: 28px 32px;
      border-radius: 20px;
      box-shadow: 0 12px 40px rgba(11,22,40,0.3);
      max-width: 250px;
    }

    @media (min-width: 1024px) { .about-stat-card { right: -40px; } }

    .about-stat-num {
      font-family: var(--font-display);
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--teal);
      line-height: 1;
      margin-bottom: 8px;
    }

    .about-stat-label {
      font-weight: 600;
      font-size: 1rem;
      margin-bottom: 6px;
    }

    .about-stat-desc { font-size: 0.8rem; color: var(--slate-300); line-height: 1.5; }

    .about-text { padding-top: 40px; }

    @media (min-width: 1024px) { .about-text { padding-top: 0; } }

    .about-mission {
      background: var(--slate-50);
      border: 1px solid var(--slate-100);
      border-radius: 12px;
      padding: 20px 24px;
      margin: 24px 0 32px;
    }

    .about-mission h4 { font-weight: 700; color: var(--navy); margin-bottom: 6px; font-size: 0.95rem; }
    .about-mission p { font-size: 0.875rem; color: var(--slate-500); line-height: 1.65; }

    .about-reasons {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .reason-item { display: flex; gap: 12px; }

    .reason-icon { flex-shrink: 0; margin-top: 2px; }
    .reason-icon svg { width: 20px; height: 20px; color: var(--teal); }

    .reason-title { font-weight: 700; color: var(--navy); font-size: 0.9rem; margin-bottom: 3px; }
    .reason-desc { font-size: 0.8rem; color: var(--slate-500); }

    /* =========================================================
       CLIENTS
    ========================================================= */
    #clients {
      background: var(--navy);
      color: var(--white);
      padding: 96px 0;
    }

    .clients-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }

    .clients-header .section-title { color: var(--white); }
    .clients-header .section-sub { color: var(--slate-300); }

    .clients-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      max-width: 960px;
      margin: 0 auto;
    }

    @media (min-width: 640px) { .clients-grid { grid-template-columns: 1fr 1fr 1fr; } }

    .client-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 32px;
      border-radius: var(--radius-lg);
      transition: background 0.3s;
    }

    .client-card:hover { background: rgba(255,255,255,0.1); }

    .client-card svg { width: 32px; height: 32px; color: var(--teal); margin-bottom: 20px; }

    .client-card h3 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 10px;
    }

    .client-card p { font-size: 0.875rem; color: var(--slate-400); line-height: 1.65; }

    .clients-footer {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 56px;
      color: var(--teal);
      font-weight: 500;
      font-size: 0.95rem;
    }

    .clients-footer svg { width: 20px; height: 20px; }

    /* =========================================================
       CONTACT
    ========================================================= */
    #contact { background: var(--slate-50); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 64px;
    }

    @media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 96px; } }

    .contact-info .section-sub { max-width: 480px; margin-bottom: 48px; }

    .contact-item { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 32px; }

    .contact-item-icon {
      width: 48px; height: 48px;
      flex-shrink: 0;
      border-radius: 50%;
      background: var(--white);
      border: 1px solid var(--slate-200);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .contact-item-icon svg { width: 20px; height: 20px; color: var(--navy); }

    .contact-item h4 { font-weight: 700; color: var(--navy); font-size: 1rem; margin-bottom: 4px; }
    .contact-item p  { font-size: 0.9rem; color: var(--slate-500); }

    .contact-form-card {
      background: var(--white);
      padding: 40px;
      border-radius: var(--radius-xl);
      border: 1px solid var(--slate-100);
      box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin-bottom: 20px;
    }

    @media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

    .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
    .form-group:last-of-type { margin-bottom: 0; }

    label {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--navy);
    }

    input, textarea {
      font-family: var(--font-body);
      font-size: 0.9rem;
      padding: 12px 16px;
      border: 1.5px solid var(--slate-200);
      border-radius: 10px;
      background: var(--slate-50);
      color: var(--navy);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    input::placeholder, textarea::placeholder { color: var(--slate-400); }

    input:focus, textarea:focus {
      border-color: var(--teal);
      box-shadow: 0 0 0 3px rgba(0,229,195,0.12);
      background: var(--white);
    }

    textarea { min-height: 120px; resize: none; }

    .form-error {
      font-size: 0.78rem;
      color: #ef4444;
      margin-top: 4px;
      display: none;
    }

    .btn-submit {
      width: 100%;
      margin-top: 24px;
      padding: 15px;
      font-size: 0.95rem;
      font-weight: 600;
      font-family: var(--font-body);
      border-radius: 10px;
      background: var(--navy);
      color: var(--white);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background 0.2s, transform 0.2s;
    }

    .btn-submit svg { width: 18px; height: 18px; transition: transform 0.2s; }
    .btn-submit:hover { background: var(--slate-800); transform: translateY(-1px); }
    .btn-submit:hover svg { transform: translateX(3px); }

    .form-success {
      display: none;
      text-align: center;
      padding: 24px;
      background: rgba(0,229,195,0.08);
      border: 1.5px solid rgba(0,229,195,0.3);
      border-radius: 12px;
      margin-top: 20px;
      color: var(--navy);
      font-weight: 500;
    }

    /* =========================================================
       FOOTER
    ========================================================= */
    footer {
      background: var(--navy);
      color: rgba(255,255,255,0.7);
      padding: 64px 0 40px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    @media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

    .footer-brand p {
      margin-top: 16px;
      max-width: 340px;
      line-height: 1.7;
      font-size: 0.9rem;
    }

    .footer-logo {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.02em;
    }

    .footer-logo span { color: var(--teal); }

    .footer-col h4 {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 16px;
    }

    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a { font-size: 0.875rem; transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--teal); }
    .footer-col ul li { font-size: 0.875rem; }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      font-size: 0.8rem;
    }

    @media (min-width: 640px) {
      .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
    }

    .footer-bottom-links { display: flex; gap: 20px; }
    .footer-bottom-links a:hover { color: var(--white); }

    /* =========================================================
       TOAST NOTIFICATION
    ========================================================= */
    #toast {
      position: fixed;
      bottom: 32px;
      right: 32px;
      background: var(--navy);
      color: var(--white);
      padding: 16px 24px;
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.2);
      border-left: 4px solid var(--teal);
      z-index: 999;
      transform: translateY(20px);
      opacity: 0;
      transition: all 0.3s;
      max-width: 320px;
    }

    #toast.show { transform: translateY(0); opacity: 1; }
    #toast h5 { font-weight: 700; margin-bottom: 4px; font-size: 0.95rem; }
    #toast p { font-size: 0.82rem; color: var(--slate-300); }

/* WordPress admin bar fix */
.admin-bar #navbar { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar #navbar { top: 46px; }
}

/* Line Awesome self-hosted */
@font-face {
  font-family: "Line Awesome Free";
  font-style: normal;
  font-weight: 900;
  font-display: auto;
  src: url("assets/fonts/la-solid-900.eot");
  src: url("assets/fonts/la-solid-900.eot?#iefix") format("embedded-opentype"),
       url("assets/fonts/la-solid-900.woff2") format("woff2"),
       url("assets/fonts/la-solid-900.woff") format("woff"),
       url("assets/fonts/la-solid-900.ttf") format("truetype"),
       url("assets/fonts/la-solid-900.svg#lineawesome") format("svg");
}
@font-face {
  font-family: "Line Awesome Brands";
  font-style: normal;
  font-weight: 400;
  font-display: auto;
  src: url("assets/fonts/la-brands-400.eot");
  src: url("assets/fonts/la-brands-400.eot?#iefix") format("embedded-opentype"),
       url("assets/fonts/la-brands-400.woff2") format("woff2"),
       url("assets/fonts/la-brands-400.woff") format("woff"),
       url("assets/fonts/la-brands-400.ttf") format("truetype"),
       url("assets/fonts/la-brands-400.svg#lineawesome") format("svg");
}
.las { font-family: "Line Awesome Free"; font-weight: 900; }
.lab { font-family: "Line Awesome Brands"; font-weight: 400; }
.la-arrow-up::before { content: "\f062"; }
.la-linkedin-in::before { content: "\f0e1"; }
.la-instagram::before { content: "\f16d"; }
.la-facebook-f::before { content: "\f09a"; }
.la-whatsapp::before { content: "\f232"; }

/* Loader */
.loader-bg {
  position: fixed; z-index: 999999;
  width: 100%; height: 100%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  top: 0; left: 0;
}
.loader-center { display: flex; align-items: center; gap: 8px; }
.loader-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--navy);
  animation: ldBounce .6s infinite alternate;
}
.loader-dot:nth-child(2) { animation-delay: .2s; background: var(--teal); }
.loader-dot:nth-child(3) { animation-delay: .4s; }
@keyframes ldBounce { 0% { transform: translateY(10px); } 100% { transform: translateY(-10px); } }

/* Go-top button */
.go-top {
  position: fixed; bottom: 18px; right: 18px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 999;
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: all .4s;
  cursor: pointer;
  font-size: 18px;
}
.go-top.active { opacity: 1; visibility: visible; transform: none; }
.go-top:hover { background: var(--teal); color: var(--navy); }
