body {
   background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 50%, #f8fbff 100%);
    color: #1e293b;
    line-height: 1.6;
  }
.hero {
    padding: 80px 0 60px; margin-top:150px;
    text-align: center;
    background: linear-gradient(180deg, #e8f2ff 0%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 30%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    pointer-events: none;
  }
  .hero-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #2563eb;
    font-size: 14px;
    margin-bottom: 24px;
    letter-spacing: 1px;
    font-weight: 500;
  }
  .hero h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0f172a;
    line-height: 1.2;
  }
  .hero h1 span {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-subtitle {
    font-size: 18px;
    color: #475569;
    max-width: 720px;
    margin: 0 auto 40px;
    line-height: 1.8;
  }
  .hero-desc {
    font-size: 15px;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 48px;
    line-height: 1.8;
  }

  /* Stats */
  .stats {
    display: flex;
    justify-content: center;
    gap: 56px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  .stat-item {
    text-align: center;
    padding: 20px 32px;
    background: rgba(255,255,255,0.7);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(10px);
  }
  .stat-number {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;

    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .stat-label {
    font-size: 13px;
    color: #64748b;
  }

  /* Section Title */
  .div-title {
    text-align: center;
    padding: 80px 0 48px;
  }
  .div-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
  }
  .div-title p {
    font-size: 16px;
    color: #64748b;
    max-width: 640px;
    margin: 0 auto;
  }

  /* Process Steps */
  .process-div {
    padding-bottom: 60px;
  }
  .process-steps {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(90deg, #dbeafe 0%, #2563eb 50%, #dbeafe 100%);
    z-index: 0;
  }
  .step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
  }
  .step-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
  }
  .step-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    padding: 0 8px;
  }

  /* Scene Cards */
  .scenes-div {
    padding-bottom: 80px;
  }
  .scene-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .scene-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .scene-card:hover {
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
  }
  .scene-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #2563eb 0%, #4f46e5 100%);
  }
  .scene-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  .scene-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    flex-shrink: 0;
  }
  .scene-icon svg {
    width: 22px;
    height: 22px;
  }
  .scene-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
  }
  .scene-tag {
    font-size: 12px;
    color: #2563eb;
    background: #eff6ff;
    padding: 2px 10px;
    border-radius: 4px;
    margin-top: 4px;
    display: inline-block;
  }
  .scene-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .scene-content h4.solution-title {
    color: #2563eb;
    margin-top: 16px;
  }
  .scene-content ul {
    list-style: none;
    padding: 0;
  }
  .scene-content ul li {
    font-size: 13px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 6px;
    padding-left: 14px;
    position: relative;
  }
  .scene-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #94a3b8;
  }
  .scene-result {
    margin-top: 16px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border-radius: 8px;
    border-left: 3px solid #059669;
  }
  .scene-result-label {
    font-size: 12px;
    font-weight: 700;
    color: #059669;
    margin-bottom: 6px;
  }
  .scene-result p {
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
  }

  /* Services List */
  .services-div {
    padding: 0px 0 80px;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .service-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
  }
  .service-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.06);
  }
  .service-num {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .service-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
  }
  .service-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
  }

  /* Why Us */
  .why-div {
    padding: 0px 0 80px;
    background: linear-gradient(180deg, #f8fbff 0%, #f0f7ff 100%);
  }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .why-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
  }
  .why-card:hover {
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.08);
    transform: translateY(-2px);
  }
  .why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #2563eb;
  }
  .why-icon svg {
    width: 24px;
    height: 24px;
  }
  .why-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
  }
  .why-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
  }

  /* QR Code Section */
  .qr-div {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
  }
  .qr-div::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
  }
  .qr-div h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
  }
  .qr-div .qr-subtitle {
    font-size: 16px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
  }
  .qr-wrap {
    display: flex;
    justify-content: center;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
  }
  .qr-item {
    text-align: center;
  }
  .qr-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 16px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .qr-placeholder:hover {
    transform: scale(1.05);
  }
  /*.qr-placeholder::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    background: repeating-linear-gradient(
      0deg,
      #1e293b 0px,
      #1e293b 4px,
      transparent 4px,
      transparent 8px
    ),
    repeating-linear-gradient(
      90deg,
      #1e293b 0px,
      #1e293b 4px,
      transparent 4px,
      transparent 8px
    );
    border-radius: 4px;
    opacity: 0.15;
  }*/
  .qr-placeholder-text {
    font-size: 13px;
    color: #64748b;
    position: relative;
    z-index: 1;
    text-align: center;
    line-height: 1.5;
  }
  .qr-name {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #e2e8f0;
  }
  .qr-role {
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
  }
 .qr-placeholder img{ display:block; width:140px; height:auto}
  
  /* Responsive */
  @media (max-width: 1024px) {
    .scene-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { flex-wrap: wrap; gap: 24px; }
    .process-steps::before { display: none; }
    .step-item { flex: 1 1 30%; }
    .qr-wrap { gap: 40px; }
	.hero {margin-top:80px;}
  }
  @media (max-width: 768px) {
    .hero h1 { font-size: 28px; }
    .hero-subtitle { font-size: 16px; }
    .stats { gap: 16px; }
    .stat-item { padding: 16px 24px; }
    .stat-number { font-size: 28px; }
    .why-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .step-item { flex: 1 1 45%; }
    .qr-wrap { gap: 32px; }
    .qr-placeholder { width: 160px; height: 160px; }
    .div-title h2 { font-size: 24px; }
	.stat-number { font-size: 24px; }
	.qr-div h2{ font-size:24px;}
	.div-title{padding: 50px 0 25px;}
  }