      :root {
        --primary: #ff6b1a;
        --primary-light: #ff914d;
        --secondary: #111111;
        --bg-light: #f7f7f7;
        --card-bg: #ffffff;
        --text-dark: #111827;
        --text-light: #6b7280;
        --border: #ececec;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "Inter", sans-serif;
        background: #ffffff;
        color: var(--text-dark);
        overflow-x: hidden;
            font-family: "Poppins", sans-serif;

      }

      /* Navbar */

  .navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
  }

  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* =========================
        LOGO
  ========================== */

  .navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }

  .logo-wrapper {
    background: #ffffff;
    padding: 8px;
    border-radius: 16px;
    transition: 0.3s;
  }

  .logo-wrapper:hover {
    transform: scale(1.05);
  }

  .logo {
    width: 62px;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }

  .brand-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: 1px;
    margin: 0;
  }

  .brand-subtitle {
    font-size: 0.78rem;
    color: #ff6b1a;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 3px;
  }

  .navbar-nav {
    gap: 8px;
  }

  .nav-link {
    position: relative;
    color: #374151 !important;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 16px !important;
    border-radius: 10px;
    transition: 0.3s ease;
  }

  .nav-link:hover {
    color: #ff6b1a !important;
    background: rgba(255, 107, 26, 0.08);
  }

  .nav-link.active {
    color: #ff6b1a !important;
  }


  .btn-gradient {
    background: linear-gradient(135deg, #ff6b1a, #ff914d);
    border: none;
    color: white !important;
    padding: 12px 26px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.35s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 107, 26, 0.25);
  }

  .btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 26, 0.35);
    color: white !important;
  }



  .navbar-toggler {
    border: none;
    padding: 8px 10px;
    background: rgba(255, 107, 26, 0.08);
    border-radius: 10px;
    box-shadow: none !important;
  }

  .navbar-toggler-icon {
    width: 1.3em;
    height: 1.3em;
  }


  @media (max-width: 991px) {
    .navbar {
      padding: 12px 0;
    }

    .navbar-collapse {
      background: #ffffff;
      margin-top: 18px;
      padding: 22px;
      border-radius: 20px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    }

    .navbar-nav {
      gap: 10px;
      align-items: stretch !important;
    }

    .nav-link {
      padding: 14px 16px !important;
      border-radius: 12px;
    }

    .btn-gradient {
      width: 100%;
      margin-top: 10px;
      padding: 14px;
    }

    .brand-title {
      font-size: 1.2rem;
    }

    .logo {
      width: 54px;
    }
  }

  @media (max-width: 576px) {
    .navbar-brand {
      gap: 10px;
    }

    .logo-wrapper {
      padding: 6px;
    }

    .logo {
      width: 48px;
    }

    .brand-title {
      font-size: 1rem;
    }

    .brand-subtitle {
      font-size: 0.68rem;
      letter-spacing: 1.5px;
    }
  }


  /* ======================================================
                        HERO
  ======================================================= */

  


/* =========================
      HERO SECTION
========================= */

.hero-section{
  position: relative;
  overflow: hidden;
  padding: 170px 0 120px;
  background:
  linear-gradient(135deg,#f8f9ff 0%,#ffffff 100%);
}

/* BG CIRCLES */

.hero-bg-circle{
  position:absolute;
  border-radius:50%;
  filter: blur(80px);
  z-index:0;
}

.hero-circle-1{
  width:350px;
  height:350px;
  background:rgba(243, 88, 16, 0.171);
  top:-120px;
  right:-80px;
}

.hero-circle-2{
  width:300px;
  height:300px;
  background:rgba(255,107,26,0.12);
  bottom:-100px;
  left:-80px;
}

/* CONTAINER */

.hero-section .container{
  position:relative;
  z-index:2;
}

/* BADGE */

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#ffffff;
  padding:12px 18px;
  border-radius:50px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  font-size:14px;
  font-weight:700;
  color:#ff6b1a;
  margin-bottom:28px;
  animation:floatBadge 3s ease-in-out infinite;
}

.hero-badge i{
  font-size:16px;
}

@keyframes floatBadge{
  0%{
    transform:translateY(0px);
  }
  50%{
    transform:translateY(-6px);
  }
  100%{
    transform:translateY(0px);
  }
}

/* TITLE */

.hero-title{
  font-size:4.2rem;
  line-height:1.1;
  font-weight:800;
  color:#111827;
  margin-bottom:25px;
}

.hero-title span{
  color:#ff6b1a;
  position:relative;
}

.hero-title span::after{
  content:"";
  position:absolute;
  left:0;
  bottom:6px;
  width:100%;
  height:12px;
  background:rgba(108,99,255,0.18);
  z-index:-1;
  border-radius:20px;
}

/* SUBTITLE */

.hero-subtitle{
  font-size:1.1rem;
  line-height:1.9;
  color:#6b7280;
  max-width:620px;
  margin-bottom:35px;
}

/* BUTTONS */

.hero-buttons{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:40px;
}

.btn-primary-custom{
  background:linear-gradient(135deg,#ff6b1a,#d15817);
  color:#fff;
  padding:16px 30px;
  border-radius:16px;
  font-weight:700;
  text-decoration:none;
  transition:0.35s;
  box-shadow:0 12px 30px rgba(245, 161, 5, 0.28);
}

.btn-primary-custom:hover{
  transform:translateY(-4px);
  color:#fff;
}

.btn-outline-custom{
  border:2px solid #dbe1ff;
  color:#374151;
  padding:15px 28px;
  border-radius:16px;
  font-weight:700;
  text-decoration:none;
  transition:0.35s;
  background:#fff;
}

.btn-outline-custom:hover{
  background:#ff6b1a;
  border-color:#ff6b1a;
  color:#fff;
}

/* TRUST */

.hero-trust{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.trust-users{
  display:flex;
}

.trust-users img{
  width:46px;
  height:46px;
  border-radius:50%;
  border:3px solid #fff;
  margin-left:-12px;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.trust-users img:first-child{
  margin-left:0;
}

.trust-text{
  color:#6b7280;
  font-weight:500;
}

/* =========================
      DASHBOARD CARD
========================= */

.dashboard-wrapper{
  background:#fff;
  border-radius:30px;
  overflow:hidden;
  box-shadow:
  0 25px 70px rgba(17,24,39,0.08);
  animation:floatCard 5s ease-in-out infinite;
}

@keyframes floatCard{
  0%{
    transform:translateY(0px);
  }
  50%{
    transform:translateY(-10px);
  }
  100%{
    transform:translateY(0px);
  }
}

.dashboard-topbar{
  background:#f8f9ff;
  padding:18px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid #eef1ff;
}

.topbar-left{
  display:flex;
  gap:8px;
}

.topbar-left span{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#d1d5db;
}

.topbar-left span:nth-child(1){
  background:#ff5f57;
}

.topbar-left span:nth-child(2){
  background:#febc2e;
}

.topbar-left span:nth-child(3){
  background:#28c840;
}

.topbar-title{
  font-weight:700;
  color:#374151;
}

.dashboard-body{
  display:flex;
  min-height:420px;
}

/* SIDEBAR */

.dashboard-sidebar{
  width:90px;
  background:#f8f9ff;
  padding:25px 15px;
  display:flex;
  flex-direction:column;
  gap:18px;
  align-items:center;
}

.side-item{
  width:52px;
  height:52px;
  border-radius:16px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  color:#6b7280;
  transition:0.3s;
  cursor:pointer;
}

.side-item.active,
.side-item:hover{
  background:#ff6b1a;;
  color:#fff;
  transform:translateY(-3px);
}

/* CONTENT */

.dashboard-content{
  flex:1;
  padding:30px;
}

.dashboard-cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.analytics-card{
  background:#f9faff;
  border-radius:22px;
  padding:24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  transition:0.35s;
}

.analytics-card:hover{
  transform:translateY(-5px);
}

.analytics-card p{
  color:#6b7280;
  margin-bottom:10px;
  font-size:14px;
}

.analytics-card h3{
  font-size:2rem;
  font-weight:800;
  color:#111827;
}

.card-icon{
  width:60px;
  height:60px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  color:#fff;
}

.blue{
  background:#6c63ff;
}

.orange{
  background:#ff8c42;
}

.green{
  background:#10b981;
}

.purple{
  background:#8b5cf6;
}

/* GRAPH */

.graph-box{
  margin-top:25px;
  background:#f9faff;
  border-radius:22px;
  padding:30px;
}

.graph-line{
  width:100%;
  height:180px;
  border-radius:18px;
  background:
  linear-gradient(
    180deg,
    rgba(231, 106, 3, 0.18),
    transparent
  );
  position:relative;
  overflow:hidden;
}

.graph-line::before{
  content:"";
  position:absolute;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,#bd5822,#ff6b1a);
  top:50%;
  left:0;
  border-radius:50px;
  animation:graphMove 3s linear infinite;
}

@keyframes graphMove{
  0%{
    transform:translateX(-100%);
  }
  100%{
    transform:translateX(100%);
  }
}

.graph-bars{
  display:flex;
  align-items:flex-end;
  gap:12px;
  margin-top:25px;
}

.graph-bars span{
  flex:1;
  background:linear-gradient(180deg,#ff6b1a,#d15817);
  border-radius:20px 20px 6px 6px;
  animation:bars 2s ease-in-out infinite;
}

.graph-bars span:nth-child(1){
  height:70px;
}

.graph-bars span:nth-child(2){
  height:120px;
}

.graph-bars span:nth-child(3){
  height:90px;
}

.graph-bars span:nth-child(4){
  height:150px;
}

.graph-bars span:nth-child(5){
  height:110px;
}

@keyframes bars{
  0%{
    transform:scaleY(0.95);
  }
  50%{
    transform:scaleY(1);
  }
  100%{
    transform:scaleY(0.95);
  }
}

/* =========================
      RESPONSIVE
========================= */

@media(max-width:991px){

  .hero-section{
    padding:140px 0 90px;
    text-align:center;
  }

  .hero-title{
    font-size:3rem;
  }

  .hero-subtitle{
    margin:auto;
    margin-bottom:35px;
  }

  .hero-buttons{
    justify-content:center;
  }

  .hero-trust{
    justify-content:center;
  }

  .dashboard-wrapper{
    margin-top:20px;
  }

}

@media(max-width:768px){

  .hero-title{
    font-size:2.4rem;
  }

  .dashboard-cards{
    grid-template-columns:1fr;
  }

  .dashboard-body{
    flex-direction:column;
  }

  .dashboard-sidebar{
    width:100%;
    flex-direction:row;
    justify-content:center;
  }

}

@media(max-width:576px){

  .hero-section{
    padding-top:120px;
  }

  .hero-title{
    font-size:2rem;
  }

  .hero-subtitle{
    font-size:0.98rem;
  }

  .btn-primary-custom,
  .btn-outline-custom{
    width:100%;
    justify-content:center;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .dashboard-content{
    padding:20px;
  }

  .analytics-card{
    padding:20px;
  }

  .analytics-card h3{
    font-size:1.5rem;
  }

}



  /* ======================================================
                        SECTION
  ======================================================= */

  .section {
    padding: 100px 0;
  }

  .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 18px;
  }

  .section-subtitle {
    color: var(--text);
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
  }

  /* ======================================================
                        FEATURE CARD
  ======================================================= */

  .feature-card {
    background: white;
    border-radius: 28px;
    padding: 35px;
    box-shadow: var(--shadow);
    transition: 0.35s;
    height: 100%;
    border: 1px solid transparent;
  }

  .feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.2);
  }

  .feature-icon {
    width: 75px;
    height: 75px;
    border-radius: 20px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
  }

  .feature-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--heading);
  }

  .feature-card p {
    color: var(--text);
    line-height: 1.8;
  }

  /* ======================================================
                        REVIEW CARD
  ======================================================= */

  .review-card {
    background: white;
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: 0.35s;
    height: 100%;
  }

  .review-card:hover {
    transform: translateY(-10px);
  }

  .review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
  }

  .review-top h4 {
    font-weight: 700;
    color: var(--heading);
  }

  .rating {
    color: #f59e0b;
  }

  .review-card p {
    color: var(--text);
    line-height: 1.8;
  }

  /* ======================================================
                        FOOTER
  ======================================================= */

  footer {
    background: white;
    border-top: 1px solid var(--border);
  }

  footer p,
  footer a {
    color: var(--text);
  }

  footer a:hover {
    color: var(--primary);
  }

  /* ======================================================
                        ANIMATION
  ======================================================= */

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ======================================================
                        RESPONSIVE
  ======================================================= */

  @media (max-width: 991px) {

    .hero {
      padding: 150px 0 90px;
      text-align: center;
    }

    .hero-title {
      font-size: 3rem;
    }

    .hero-subtitle {
      margin-left: auto;
      margin-right: auto;
    }

    .hero-buttons {
      justify-content: center;
    }

    .dashboard-card {
      margin-top: 40px;
    }
  }

  @media (max-width: 768px) {

    .hero-title {
      font-size: 2.3rem;
    }

    .section-title {
      font-size: 2rem;
    }

    .hero-buttons {
      flex-direction: column;
    }

    .btn-primary-custom,
    .btn-outline-custom {
      width: 100%;
      text-align: center;
    }

    .mini-stats {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 500px) {

    .hero {
      padding-top: 130px;
    }

    .hero-title {
      font-size: 2rem;
    }

    .dashboard-card {
      padding: 25px;
    }

    .feature-card,
    .review-card {
      padding: 25px;
    }
  }

