    :root {
      --primary: #0043ac;
      --primary-foreground: #FFFFFF;
      --accent: #00b162;
      --background: #F9FAFB;
      --foreground: #1F2937;
      --muted-foreground: #6B7280;
      --border: #E5E7EB;
      --secondary: #F3F4F6;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
      background: linear-gradient(180deg, var(--background), rgba(243, 244, 246, 0.2));
      color: var(--foreground);
      line-height: 1.6;
    }

    .container {
      max-width: 80rem;
      margin: 0 auto;
      padding: 0 1rem;
    }

    /* ==================== Header ==================== */
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(249, 250, 251, 0.8);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: all 0.3s ease;
    }

    header nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 5rem;
      padding: 0 1rem;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary);
      text-decoration: none;
      font-family: 'Segoe UI', Roboto, sans-serif;
    }
    .logo img {
      height: 4rem;
    }

    .nav-links {
      display: none;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      color: var(--foreground);
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    .cta-button {
      display: none;
      padding: 0.625rem 1.5rem;
      background: var(--primary);
      color: var(--primary-foreground);
      border: none;
      border-radius: 0.5rem;
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      transition: opacity 0.3s;
      text-decoration: none;
    }

    .cta-button:hover {
      opacity: 0.9;
    }

    .menu-button {
      display: block;
      background: none;
      border: none;
      cursor: pointer;
      width: 1.5rem;
      height: 1.5rem;
      padding: 0;
    }

    .menu-button svg {
      stroke: var(--foreground);
      width: 100%;
      height: 100%;
      stroke-width: 2;
    }

    .menu-button.active svg path {
      display: none;
    }

    .menu-button.active::before {
      content: '✕';
      font-size: 1.75rem;
      color: var(--foreground);
      line-height: 0.8;
    }

    .nav-mobile {
      display: none;
      position: absolute;
      top: 5rem;
      left: 0;
      right: 0;
      background: #f0f0f0;
      border-bottom: 1px solid var(--border);
      padding: 1.5rem;
      flex-direction: column;
      gap: 1rem;
      border-bottom: 2px solid gray;
      box-shadow: 0px 10px 10px #d6d6d6;
    }

    .nav-mobile.active {
      display: flex;
    }

    .nav-mobile a {
      color: var(--foreground);
      text-decoration: none;
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border);
      transition: color 0.3s;
    }

    .nav-mobile a:hover {
      color: var(--primary);
    }

    @media (min-width: 768px) {
      .nav-links {
        display: flex;
      }
      .cta-button {
        display: inline-block;
      }
      .menu-button {
        display: none;
      }
      .nav-mobile {
        display: none !important;
      }
    }

    /* ==================== Hero Section ==================== */
    .hero {
      padding: 3rem 0;
      position: relative;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .hero {
        padding: 5rem 0;
      }
    }

    .hero-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: center;
    }

    @media (min-width: 768px) {
      .hero-content {
        grid-template-columns: 1fr 1fr;
      }
    }

    h1 {
      font-size: 2.25rem;
      line-height: 1.1;
      margin-bottom: 1rem;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    @media (min-width: 768px) {
      h1 {
        font-size: 3rem;
      }
    }

    @media (min-width: 1024px) {
      h1 {
        font-size: 3.75rem;
      }
    }

    .text-primary {
      color: var(--primary);
    }

    .text-accent {
      color: var(--accent);
    }

    .text-foreground {
      color: var(--foreground);
    }

    h1 + p {
      font-size: 1.25rem;
      color: var(--muted-foreground);
      max-width: 32rem;
      margin-bottom: 2rem;
      line-height: 1.6;
    }

    .button-group {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 4rem;
    }

    @media (min-width: 640px) {
      .button-group {
        flex-direction: row;
      }
    }

    .btn {
      padding: 0.75rem 2rem;
      border-radius: 0.5rem;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      border: none;
      font-size: 0.95rem;
      text-align: center;
      transition: all 0.3s;
      display: inline-block;
    }

    .btn-primary {
      background: var(--primary);
      color: var(--primary-foreground);
    }

    .btn-primary:hover {
      opacity: 0.9;
    }

    .btn-secondary {
      border: 2px solid var(--primary);
      color: var(--primary);
      background: transparent;
    }

    .btn-secondary:hover {
      background: rgba(0, 67, 172, 0.05);
    }

    .hero-image {
      position: relative;
    }

    .gradient-blur {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0, 67, 172, 0.1), rgba(0, 177, 98, 0.1));
      border-radius: 1.5rem;
      filter: blur(3rem);
    }

    .dashboard-card {
      position: relative;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(1rem);
      border-radius: 1.5rem;
      padding: 1.5rem;
      box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
      border: 1px solid var(--border);
    }

    .dashboard-card img {
      width: 100%;
      border-radius: 0.75rem;
    }

    /* ==================== Section Styles ==================== */
    section {
      padding: 5rem 0;
    }

    @media (min-width: 768px) {
      section {
        padding: 8rem 0;
      }
    }

    .light-bg {
      background: rgba(255, 255, 255, 0.5);
    }

    section h2 {
      font-size: 1.875rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-align: center;
      letter-spacing: -0.01em;
    }

    @media (min-width: 768px) {
      section h2 {
        font-size: 2.25rem;
      }
    }

    section > .container > p {
      text-align: center;
      color: var(--muted-foreground);
      font-size: 1.125rem;
      max-width: 42rem;
      margin: 0 auto 4rem;
    }

    /* ==================== Services Grid ==================== */
    .services-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-top: 4rem;
    }

    @media (min-width: 768px) {
      .services-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .service-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 0.75rem;
      padding: 2rem;
      transition: all 0.3s;
      cursor: pointer;
    }

    .service-card:hover {
      border-color: rgba(0, 67, 172, 0.5);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    }

    .service-card .icon-box {
      width: 3.5rem;
      height: 3.5rem;
      background: rgba(0, 67, 172, 0.1);
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      transition: background 0.3s;
    }

    

    .service-card .icon-box svg {
      width: 1.5rem;
      height: 1.5rem;
      color: var(--primary);
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .service-card:hover .icon-box {
      background: rgba(0, 67, 172, 0.2);
    }

    .service-card h3 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }

    .service-card p {
      color: var(--muted-foreground);
      font-size: 0.95rem;
      line-height: 1.6;
    }

    /* ==================== Verticals Grid ==================== */
    .verticals-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-top: 4rem;
    }

    @media (min-width: 768px) {
      .verticals-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .vertical-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 0.75rem;
      padding: 2rem;
      transition: border-color 0.3s;
      cursor: pointer;
    }

    .vertical-card:hover {
      border-color: rgba(0, 177, 98, 0.5);
    }

    .vertical-card h3 {
      font-size: 1.125rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }

    .vertical-card p {
      color: var(--muted-foreground);
      font-size: 0.9rem;
      margin-bottom: 1rem;
      line-height: 1.5;
    }

    .badge {
      display: inline-block;
      padding: 0.25rem 0.75rem;
      background: color-mix(in oklab, var(--accent) 10%, transparent);
      color: var(--accent);
      font-size: 0.75rem;
      font-weight: 600;
      border-radius: 9999px;
    }


    .vertical-card .icon-box {
      width: 3.5rem;
      height: 3.5rem;
      background: color-mix(in oklab, var(--accent) 10%, transparent);
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      transition: background 0.3s;
    }

    

    .vertical-card .icon-box svg {
      width: 1.5rem;
      height: 1.5rem;
      color: var(--accent);
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .vertical-card:hover .icon-box {
      background: rgba(0, 172, 43, 0.2);
    }

    /* ==================== How It Works ==================== */
    .steps-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-top: 4rem;
    }

    @media (min-width: 768px) {
      .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
      }
    }

    .step {
      position: relative;
    }

    .step-number {
      position: absolute;
      top: 0;
      left: 0;
      width: 3rem;
      height: 3rem;
      background: var(--primary);
      color: var(--primary-foreground);
      border-radius: 9999px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      font-weight: 700;
    }

    .step-content {
      background: white;
      border: 1px solid var(--border);
      border-radius: 1.3rem 0.75rem 0.75rem 0.75rem;
      padding: 2rem;
      padding-top: 5rem;
    }

    .step-content h3 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .step-content p {
      color: var(--muted-foreground);
      line-height: 1.6;
    }

    /* ==================== Results Section ==================== */
    .metrics-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-top: 4rem;
      margin-bottom: 3rem;
    }

    @media (min-width: 768px) {
      .metrics-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .metric-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 0.75rem;
      padding: 2rem;
      text-align: center;
    }

    .metric-value {
      font-size: 2.75rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      min-height: 3rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .metric-value.accent {
      color: var(--accent);
    }

    .metric-value.primary {
      color: var(--primary);
    }

    .metric-label {
      color: var(--muted-foreground);
      font-size: 0.95rem;
    }

    /* Testimonial Carousel */
    .testimonials-container {
      position: relative;
      overflow: hidden;
      max-width: 100%;
    }

    .testimonials-wrapper {
      display: flex;
      gap: 2rem;
      transition: transform 0.5s ease-in-out;
    }

    .testimonial {
      background: white;
      border: 1px solid var(--border);
      border-radius: 0.75rem;
      padding: 2rem;
      flex: 0 0 100%;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      /* max-width: 80vw;
      margin: 0 auto; */
    }

    @media (min-width: 768px) {
      .testimonial {
        flex: 0 0 calc(100% - 2rem);
      }
    }

    .testimonial p {
      font-size: 1.125rem;
      font-style: italic;
      margin-bottom: 1.5rem;
      color: var(--foreground);
      line-height: 1.7;
    }

    .author-info {
      display: flex;
      gap: 1rem;
      align-items: center;
    }

    .author-avatar {
      width: 3rem;
      height: 3rem;
      background: rgba(0, 67, 172, 0.2);
      border-radius: 9999px;
      flex-shrink: 0;
    }

    .author-name {
      font-weight: 600;
      color: var(--foreground);
      display: block;
    }

    .author-title {
      font-size: 0.875rem;
      color: var(--muted-foreground);
      display: block;
    }

    .carousel-controls {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
    }

    .carousel-dot {
      width: 0.75rem;
      height: 0.75rem;
      border-radius: 9999px;
      background: var(--border);
      cursor: pointer;
      transition: background 0.3s;
    }

    .carousel-dot.active {
      background: var(--primary);
    }

    /* ==================== About Section ==================== */
    .about-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: center;
      margin-top: 4rem;
    }

    @media (min-width: 768px) {
      .about-content {
        grid-template-columns: 1fr 1fr;
      }
    }

    .about-text h2 {
      text-align: left;
      margin-bottom: 1.5rem;
    }

    .about-text p {
      font-size: 1.125rem;
      color: var(--muted-foreground);
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }

    .features-list {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .feature-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .feature-icon {
      width: 1.5rem;
      height: 1.5rem;
      background: rgba(0, 177, 98, 0.2);
      border-radius: 9999px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 0.25rem;
    }

    .feature-icon svg {
      width: 1rem;
      height: 1rem;
      color: var(--accent);
    }

    .feature-title {
      font-weight: 600;
      color: var(--foreground);
      display: block;
      margin-bottom: 0.25rem;
    }

    .feature-description {
      color: var(--muted-foreground);
      font-size: 0.9rem;
      display: block;
    }

    /* ==================== Contact Section ==================== */
    .contact-bg {
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), var(--background));
    }

    .contact-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: flex-start;
      margin-top: 4rem;
      max-width: 56rem;
      margin-left: auto;
      margin-right: auto;
    }
    .contact-content{
        background: var(--background);
        border: 1px solid var(--border);
        border-radius: 0.75rem;
        padding: 2rem;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);

    }

    @media (min-width: 768px) {
      .contact-content {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
      }
    }

    .form-group {
      margin-bottom: 1rem;
    }

    .form-group label {
      display: block;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--foreground);
      margin-bottom: 0.1rem;
      margin-left: 0.3rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 0.5rem 1rem;
      border: 1px solid var(--border);
      border-radius: 0.5rem;
      background: white;
      color: var(--foreground);
      font-family: inherit;
      font-size: 0,8rem;
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(0, 67, 172, 0.1);
    }

    .form-group textarea {
      resize: none;
      min-height: 6rem;
    }

    .submit-button {
      width: 100%;
      padding: 0.75rem;
      background: var(--primary);
      color: var(--primary-foreground);
      border: none;
      border-radius: 0.5rem;
      font-weight: 600;
      cursor: pointer;
      font-size: 1rem;
      transition: opacity 0.3s;
      margin-top: 1rem;
    }

    .submit-button:hover {
      opacity: 0.9;
    }

    .submit-button:disabled {
      opacity: 0.6;
    }

    .success-message,
    .error-message {
      margin-top: 1.5rem;
      padding: 1rem;
      border-radius: 0.5rem;
      display: none;
    }

    .success-message {
      background: #ECFDF5;
      border: 1px solid #A7F3D0;
      color: #047857;
    }

    .error-message {
      background: #FEF2F2;
      border: 1px solid #FECACA;
      color: #991B1B;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .info-section h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }

    .info-section p {
      color: var(--muted-foreground);
      line-height: 1.6;
    }

    .info-list {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .info-item {
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
    }

    .info-item svg {
      width: 1.5rem;
      height: 1.5rem;
      color: var(--primary);
      flex-shrink: 0;
      margin-top: 0.125rem;
    }

    .info-text {
      font-weight: 600;
      color: var(--foreground);
      display: block;
    }

    .info-desc {
      font-size: 0.9rem;
      color: var(--muted-foreground);
      display: block;
    }

    /* ==================== Footer ==================== */
    footer {
      background: var(--background);
      border-top: 1px solid var(--border);
      margin-top: 4rem;
    }

    footer .container {
      padding: 3rem 1rem;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    @media (min-width: 768px) {
      .footer-top {
        grid-template-columns: 1fr 1fr;
      }
    }

    .footer-column h3 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 1rem;
    }

    .footer-column p {
      color: var(--muted-foreground);
      max-width: 20rem;
      line-height: 1.6;
    }

    .footer-nav {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .footer-nav {
        grid-template-columns: 1fr 1fr;
      }
    }

    .footer-nav h4 {
      font-weight: 600;
      color: var(--foreground);
      margin-bottom: 1rem;
    }

    .footer-nav ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .footer-nav a {
      color: var(--muted-foreground);
      text-decoration: none;
      transition: color 0.3s;
      font-size: 0.95rem;
    }

    .footer-nav a:hover {
      color: var(--primary);
    }

    .social-links {
      display: flex;
      gap: 1.5rem;
      align-items: center;
    }

    .social-links a {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 2.5rem;
      height: 2.5rem;
      background: rgba(0, 67, 172, 0.1);
      color: var(--primary);
      border-radius: 9999px;
      transition: all 0.3s;
      font-size: 1.125rem;
    }

    .social-links a:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-2px);
    }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: center;
      text-align: center;
    }

    @media (min-width: 768px) {
      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
      }
    }

    .footer-bottom p {
      color: var(--muted-foreground);
      font-size: 0.875rem;
    }

    .footer-credit {
      display: flex;
      gap: 0.5rem;
      align-items: center;
      font-size: 0.875rem;
    }

    .footer-credit a {
      color: var(--primary);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-credit a:hover {
      color: var(--accent);
    }

    /* ==================== Animations ==================== */
    .fade-in {
      opacity: 0;
      animation: fadeIn 0.6s ease-in forwards;
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }

    .slide-in-left {
      animation: slideInLeft 0.8s ease-out forwards;
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .slide-in-right {
      animation: slideInRight 0.8s ease-out forwards;
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    section{
      background: url(../images/bg.avif);
    }