:root {
      --primary: #1e40af;
      --primary-light: #3b82f6;
      --secondary: #8b5cf6;
      --accent: #ec4899;
      --dark: #0f172a;
      --light: #f8fafc;
      --gray: #64748b;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Inter', sans-serif;
      color: var(--dark);
      background-color: #ffffff;
      overflow-x: hidden;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
    }
    
    /* Navbar */
    .navbar {
      background: rgba(15, 23, 42, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

      transition: all 0.3s ease;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }
    
    .navbar-brand {
      font-weight: 800;
      font-size: 1.5rem;
      color: #fff !important;
      letter-spacing: -0.5px;
    }
    
    .navbar-brand span {
      color: var(--primary-light);
    }
    
    .nav-link {
      color: rgba(255, 255, 255, 0.8) !important;
      font-weight: 500;
      margin: 0 0.5rem;
      transition: all 0.3s ease;
      position: relative;
    }
    
    .nav-link:hover {
      color: #fff !important;
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary-light);
      transition: width 0.3s ease;
    }
    
    .nav-link:hover::after {
      width: 100%;
    }
    
    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      padding: 10rem 0 6rem;
      position: relative;
      overflow: hidden;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
      opacity: 0.3;
    }
    
    .hero-content {
      position: relative;
      z-index: 2;
    }
    
    .hero h1 {
      font-weight: 800;
      font-size: 3.5rem;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .hero p {
      font-size: 1.25rem;
      font-weight: 400;
      margin-bottom: 2rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      opacity: 0.9;
    }
    
    .btn-hero {
      padding: 0.75rem 2rem;
      font-weight: 600;
      border-radius: 50px;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 0.9rem;
    }
    
    .btn-primary-custom {
      background: #fff;
      color: var(--primary);
      border: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .btn-primary-custom:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      background: #f8fafc;
      color: var(--primary);
    }
    
    .btn-outline-custom {
      background: transparent;
      color: #fff;
      border: 2px solid #fff;
    }
    
    .btn-outline-custom:hover {
      background: #fff;
      color: var(--primary);
      transform: translateY(-3px);
    }
    
    /* Section Styling */
    .section {
      padding: 5rem 0;
      position: relative;
    }
    
    .section-title {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 60px;
      height: 4px;
      background: var(--primary-light);
      border-radius: 2px;
    }
    
    .section-subtitle {
      font-size: 1.1rem;
      color: var(--gray);
      max-width: 700px;
      margin: 0 auto 3rem;
    }
    
    /* Cards */
    .card-custom {
      border: none;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      height: 100%;
      background: #fff;
    }
    
    .card-custom:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }
    
    .card-custom-header {
      padding: 1.5rem;
      border-bottom: 1px solid #f1f5f9;
    }
    
    .card-custom-body {
      padding: 1.5rem;
    }
    
    .card-custom-icon {
      width: 60px;
      height: 60px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }
    
    .icon-primary {
      background: rgba(59, 130, 246, 0.1);
      color: var(--primary-light);
    }
    
    .icon-success {
      background: rgba(16, 185, 129, 0.1);
      color: #10b981;
    }
    
    .icon-danger {
      background: rgba(239, 68, 68, 0.1);
      color: #ef4444;
    }
    
    /* Stats Section */
    .stats-section {
      background: var(--light);
      position: relative;
    }
    
    .stats-card {
      text-align: center;
      padding: 2rem;
      border-radius: 16px;
      background: #fff;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      height: 100%;
    }
    
    .stats-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .stats-number {
      font-size: 3rem;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 0.5rem;
      line-height: 1;
    }
    
    .stats-label {
      font-size: 1rem;
      color: var(--gray);
      font-weight: 500;
    }
    
    /* Leadership Section */
    .leadership-section {
      background: var(--light);
    }
    
    .leadership-card {
      text-align: center;
      padding: 2rem;
      border-radius: 16px;
      background: #fff;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      height: 100%;
      position: relative;
      overflow: hidden;
    }
    
    .leadership-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .leadership-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
    }
    
    .leader-img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 1.5rem;
      border: 4px solid #f1f5f9;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }
    
    .leadership-card:hover .leader-img {
      transform: scale(1.05);
      border-color: var(--primary-light);
    }
    
    .leader-name {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
    }
    
    .leader-title {
      font-weight: 600;
      margin-bottom: 1rem;
      color: var(--primary);
    }
    
    /* Product Section */
    .product-section {
      background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    }
    
    .product-img {
      border-radius: 16px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      transition: all 0.4s ease;
    }
    
    .product-img:hover {
      transform: scale(1.02);
    }
    
    .product-content h3 {
      font-size: 2rem;
      margin-bottom: 1.5rem;
      color: var(--primary);
    }
    
    .product-feature {
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
    }
    
    .product-feature i {
      color: var(--primary-light);
      margin-right: 0.75rem;
      font-size: 1.25rem;
    }
    
    /* Contact Section */
    .contact-section {
      background: var(--light);
    }
    
    .contact-form {
      background: #fff;
      border-radius: 16px;
      padding: 2.5rem;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }
    
    .form-control, .form-select {
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      padding: 0.75rem 1rem;
      font-size: 1rem;
      transition: all 0.3s ease;
    }
    
    .form-control:focus, .form-select:focus {
      border-color: var(--primary-light);
      box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }
    
    /* Footer */
    footer {
      background: var(--dark);
      color: rgba(255, 255, 255, 0.7);
      padding: 4rem 0 2rem;
      position: relative;
    }
    
    .footer-logo {
      font-weight: 800;
      font-size: 1.5rem;
      color: #fff;
      margin-bottom: 1.5rem;
      display: block;
    }
    
    .footer-logo span {
      color: var(--primary-light);
    }
    
    .footer-links {
      list-style: none;
      padding: 0;
    }
    
    .footer-links li {
      margin-bottom: 0.75rem;
    }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .footer-links a:hover {
      color: var(--primary-light);
      padding-left: 5px;
    }
    
    .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      margin-right: 0.5rem;
      transition: all 0.3s ease;
    }
    
    .social-icons a:hover {
      background: var(--primary-light);
      transform: translateY(-3px);
    }
    
    .copyright {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 1.5rem;
      margin-top: 3rem;
      text-align: center;
      font-size: 0.9rem;
    }
    
    /* Back to Top Button */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--primary);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      z-index: 999;
      transition: all 0.3s ease;
      opacity: 0;
      visibility: hidden;
    }
    
    .back-to-top.active {
      opacity: 1;
      visibility: visible;
    }
    
    .back-to-top:hover {
      background: var(--primary-light);
      transform: translateY(-5px);
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .section-title {
        font-size: 2rem;
      }
    }
    
    @media (max-width: 768px) {
      .hero {
        padding: 8rem 0 4rem;
      }
      
      .hero h1 {
        font-size: 2rem;
      }
      
      .section {
        padding: 3rem 0;
      }
      
      .stats-number {
        font-size: 2.5rem;
      }
    }

    .hero {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
  }
  
  .pre-heading .badge {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
  
  .bg-primary-custom-light {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  
  .hero-content .lead {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-features {
    margin-left: -10px;
  }
  
  .feature-item {
    padding: 8px 10px;
    display: flex;
    align-items: center;
  }
  
  .feature-item i {
    margin-right: 10px;
    font-size: 1.2rem;
  }
  
  .btn-link-custom {
    color: #0d6efd;
    text-decoration: none;
    padding: 12px 0;
    transition: all 0.3s;
  }
  
  .btn-link-custom:hover {
    color: #0a58ca;
    text-decoration: underline;
  }
  
  .hero-visual {
    position: relative;
    height: 400px;
  }
  
  .visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .main-visual {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
  }
  
  .main-visual img {
    max-width: 70%;
  }
  
  .floating-item {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 3;
    font-size: 0.7rem;
    text-align: center;
  }
  
  .floating-item i {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #0d6efd;
  }
  
  .floating-item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-bottom: 5px;
  }
  
  .item-1 {
    top: 20px;
    right: 60px;
    animation-delay: 0s;
  }
  
  .item-2 {
    bottom: 40px;
    right: 30px;
    animation-delay: 1s;
  }
  
  .item-3 {
    bottom: 20px;
    left: 60px;
    animation-delay: 2s;
  }
  
  .trusted-by-section {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .trusted-by-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
  }
  
  .client-logo {
    width: 100px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    .hero-content h1 {
      font-size: 2.5rem;
    }
    
    .hero-visual {
      height: 300px;
      margin-top: 40px;
    }
    
    .main-visual {
      width: 200px;
      height: 200px;
    }
    
    .floating-item {
      width: 60px;
      height: 60px;
      font-size: 0.6rem;
    }
    
    .floating-item i {
      font-size: 1.2rem;
    }
  }
  
  @media (max-width: 768px) {
    .hero {
      padding: 80px 0 60px;
    }
    
    .hero-content h1 {
      font-size: 2rem;
    }
    
    .hero-content .lead {
      font-size: 1.1rem;
    }
    
    .btn-hero {
      display: block;
      width: 100%;
      margin-bottom: 10px;
    }
    
    .trusted-by-section .row {
      justify-content: space-around;
    }
  }