body {
    font-family: 'Ubuntu', sans-serif;
  }

  .top-bar {
    background-color: #005d63;
    color: white;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
  }

  .top-bar .left span {
    color: #f7d700;
    font-weight: bold;
  }

  .top-bar .right a {
    color: white;
    margin-left: 18px;
    text-decoration: none;
    font-weight: 500;
  }

  .navbar-custom {
    background-color: #f3f3f3;
    border-bottom: 3px solid #c0e9fd;
    padding: 0.75rem 2rem;
  }

  .navbar-brand img {
    height: 48px;
  }

  .navbar-nav .nav-link {
    color: #0a0033 !important;
    font-weight: 500;
    padding: 8px 15px;
  }

  .nav-link.active {
    color: #00baff !important;
  }

  .cta-button {
    background-color: #0046c0;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
    transition: background 0.3s;
    text-decoration: none;
  }

  .cta-button:hover {
    background-color: #003399;
  }

  .dropdown-menu.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    min-width: 750px;
    background: #fff;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border: none;
    border-radius: 8px;
    z-index: 999;
  }

  .dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .dropdown-column {
    flex: 1;
    min-width: 220px;
  }

  .dropdown-column h6 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
    color: #000;
  }

  .dropdown-column a {
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    font-size: 15px;
    color: #120d48;
  }

  .dropdown-column a:hover {
    text-decoration: underline;
  }

  @media (max-width: 991px) {
    .top-bar, .cta-button {
      display: none;
    }

    .dropdown-menu.mega-menu {
      display: none;
      position: static;
      transform: none !important;
      opacity: 1 !important;
      visibility: visible !important;
      padding: 20px;
      flex-direction: column;
      box-shadow: none;
      border-radius: 0;
    }

    .dropdown-menu.mega-menu.show {
      display: flex;
      animation: slideDown 0.3s ease-in-out;
    }
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero-section {
    background-color: #d9f1fd;
    padding: 80px 20px;
    position: relative;
    text-align: center;
  }

  .hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0a0033;
    position: relative;
    display: inline-block;
  }

  .hero-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 12px;
    width: 100%;
    background-color: #00baff;
    z-index: -1;
  }

  .hero-description {
    color: #3d4c63;
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons .btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    margin: 10px;
  }

  .btn-request {
    background-color: #00baff;
    color: #fff;
    border: none;
  }

  .btn-contact {
    background-color: #00226c;
    color: #fff;
    border: none;
  }

  .features-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
  }

  .features-icons .feature-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #0a0033;
    font-weight: 500;
  }

  .features-icons .feature-item i {
    color: rgb(67, 67, 255);
    margin-right: 10px;
    font-size: 18px;
  }

  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.2rem;
    }

    .hero-section {
      padding: 60px 20px;
    }

    .features-icons {
      gap: 20px;
      flex-direction: column;
    }
  }

  .section {
    background-color: #dff2fd;
    border-radius: 15px;
    display: flex;
    padding: 40px;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 40px auto;
    font-family: 'Inter', sans-serif;
  }

  .section .content {
    max-width: 500px;
  }

  .tagline {
    color: #007bff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .section .title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0b0c30;
  }

  .section .description {
    font-size: 16px;
    color: #5a5a89;
    margin-bottom: 20px;
    width: 70%;
  }

  .section .btn {
    background-color: #00aaff;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
  }

  .section .features {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #5a5a89;
  }

  .section .graph {
    max-width: 500px;
  }

  .section .graph img {
    width: 100%;
    border-radius: 10px;
  }

  @media (min-width: 768px) {
  .col-md-1-5 {
      flex: 0 0 auto;
      width: 12.5%;
  }
  }

  .partner-logo {
      max-height: 50px;
      object-fit: contain;
      margin: 0 auto;
      filter: grayscale(0%);
      transition: transform 0.3s ease;
      }

  .partner-logo:hover {
  transform: scale(1.05);
  }
  .insights-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }

  .card {
    background: linear-gradient(to bottom, #e9f7ff, #cfeeff);
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 1.5rem;
    width: 300px;
  }

  .card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-align: center;
  }

  .chart, .bar-graph, .list {
    background: white;
    border-radius: 1rem;
    padding: 1.2rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }

  .donut {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(#007aff 30%, #00c6ff 20%, #eee 50%);
    margin: auto;
    position: relative;
  }
  .donut-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .legend {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #333;
  }

  .list ul {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
  }

  .list li {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid #eee;
  }

  .bar-graph {
    text-align: center;
  }

  .bar-chart {
    display: flex;
    justify-content: space-between;
    align-items: end;
    height: 100px;
    margin: 1rem 0;
  }

  .bar {
    width: 10%;
    background: #007aff;
    border-radius: 0.3rem;
  }

  .bar:nth-child(5) {
    background: #003366;
  }

  .metrics {
    display: flex;
    justify-content: space-around;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .badges {
      font-size: 14px; 
      color: #002e8a; 
      font-weight: bold;
  }
  .testimonials-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
    text-align: justify;
  }

  .testimonial-card {
    width: 300px;
    padding-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
  }

  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #2e2e2e;
  }

  .profile {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
  }

  .profile img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #f0f0f0;
  }

  .profile-details {
    font-size: 0.85rem;
  }

  .profile-details strong {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
  }

  .profile-details span {
    color: #7a7a90;
  }

  .stats {
    margin-top: auto;
    border-top: 1px solid #eee;
  }

  .stats .value {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: left;
    color: #1e0a3c;
    margin-bottom: 0.4rem;
  }

  .stats .label {
    font-size: 0.85rem;
    color: #7a7a90;
    text-align: left;
  }

  @media (max-width: 1000px) {
    .testimonials-section {
      flex-direction: column;
      align-items: center;
    }
  }
  .features-section {
      background: #e0f7ff;
      padding: 60px 20px;
      font-family: 'Inter', sans-serif;
      }

      .container {
      max-width: 1200px;
      margin: 0 auto;
      }

      .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      }

      .feature-card {
          background: white;
          border-radius: 20px;
          padding: 30px;
          box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
          text-align: left;
          transition: transform 0.3s ease, background-color 0.5s ease;
          }

          .feature-card:hover {
          transform: translateY(-5px);
          background-color: #002e8a;
          }

      .feature-card .icon {
      background: #f1faff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px;
      border-radius: 12px;
      margin-bottom: 20px;
      }

      .feature-card .icon img {
      width: 36px;
      height: 36px;
      }

      .feature-card h3 {
      font-size: 18px;
      color: #0a0033;
      margin-bottom: 12px;
      }

      .feature-card p {
      font-size: 15px;
      color: #6c6f79;
      margin-bottom: 18px;
      line-height: 1.6;
      }

      .feature-card a {
      font-size: 14px;
      color: #0a0033;
      font-weight: 600;
      text-decoration: none;
      }

      .feature-card:hover h3,
      .feature-card:hover p,
      .feature-card:hover a {
      color: #fff;
      }

      .feature-card:hover a:hover {
      text-decoration: underline;
      }
      .solution-section {
      padding: 60px 20px;
      font-family: 'Segoe UI', sans-serif;
      }

      .Sol {
      max-width: 1200px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      }

      .solution-header {
      flex: 1 1 30%;
      min-width: 280px;
      }

      .section-label {
      color: #007bff;
      font-weight: 600;
      font-size: 14px;
      margin-bottom: 10px;
      }

      .section-title {
      font-size: 28px;
      color: #0a0033;
      font-weight: bold;
      margin-bottom: 15px;
      }

      .section-title span {
      color: #002e8a;
      }

      .section-subtitle {
      color: #6c757d;
      font-size: 15px;
      }

      .solution-grid {
      flex: 1 1 65%;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
      }

      .solution-card {
      background: #fff;
      border-radius: 15px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      transition: 0.3s ease;
      }

      .solution-card:hover {
      transform: translateY(-5px);
      }

      .solution-card .icon {
      width: 40px;
      height: 40px;
      margin-bottom: 15px;
      }

      .solution-card h3 {
      color: #0a0033;
      font-size: 16px;
      margin-bottom: 10px;
      }

      .solution-card p {
      color: #6c757d;
      font-size: 14px;
      line-height: 1.6;
      }

      .automation-section {
      background: #dff5ff;
      padding: 60px 20px;
      border-radius: 25px;
      font-family: 'Segoe UI', sans-serif;
      }

      .automation-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      max-width: 1300px;
      margin: auto;
      }

      .automation-content {
      flex: 1 1 45%;
      min-width: 300px;
      }

      .automation-subtitle {
      color: #0092ff;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 10px;
      }

      .automation-title {
      font-size: 38px;
      color: #0a0033;
      font-weight: bold;
      margin-bottom: 20px;
      line-height: 1.3;
      }

      .automation-description {
      font-size: 17px;
      color: #6c757d;
      margin-bottom: 30px;
      line-height: 1.7;
      }

      .automation-btn {
      display: inline-block;
      background-color: #009eff;
      color: white;
      padding: 14px 28px;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      transition: background-color 0.3s ease;
      }

      .automation-btn:hover {
      background-color: #007bd1;
      }

      .automation-image {
      flex: 1 1 50%;
      text-align: center;
      }

      .automation-image img {
      max-width: 100%;
      border-radius: 20px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      }

      .faq-section {
      padding: 60px 20px;
      font-family: 'Segoe UI', sans-serif;
      background-color: #fff;
      }

      .faq-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1200px;
      margin: auto;
      gap: 40px;
      }

      .faq-left {
      flex: 1 1 45%;
      min-width: 300px;
      }

      .faq-subtitle {
      color: #009eff;
      font-weight: 600;
      font-size: 16px;
      margin-bottom: 10px;
      }

      .faq-title {
      font-size: 38px;
      font-weight: 800;
      line-height: 1.3;
      color: #000;
      margin-bottom: 20px;
      }

      .faq-title .underline {
      display: inline-block;
      background: linear-gradient(to top, #009eff 4px, transparent 4px);
      background-repeat: no-repeat;
      background-size: 100% 0.4em;
      background-position: 0 100%;
      }

      .faq-description {
      color: #6c6c80;
      font-size: 16px;
      margin-bottom: 10px;
      }

      .faq-button {
      display: inline-block;
      margin-top: 25px;
      background-color: #009eff;
      color: white;
      padding: 14px 26px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 10px;
      text-decoration: none;
      }

      .faq-right {
      flex: 1 1 45%;
      min-width: 300px;
      }

      .faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
      }

      .faq-list li {
      font-size: 16px;
      color: #212121;
      margin-bottom: 18px;
      cursor: pointer;
      justify-content: space-between;
      align-items: center;
      }

      .faq-list li span {
      font-size: 18px;
      color: #888;
      }

      .faq-list {
      list-style: none;
      padding: 0;
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      margin-bottom: 15px;
      border-bottom: 1px solid #ddd;
      padding-bottom: 10px;
    }

    .faq-question {
      cursor: pointer;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #222;
      font-size: 1.1rem;
    }

    .toggle-arrow {
      font-size: 1.2rem;
      transition: transform 0.3s ease;
    }

    .faq-question.active .toggle-arrow {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      padding-top: 0;
      font-size: 1rem;
      color: #555;
      line-height: 1.6;
    }

    .faq-answer.open {
      max-height: 300px;
      padding-top: 10px;
    }

    .insights-updates-section {
      background-color: #d9f1fd;
      padding: 80px 20px;
    }

    .section-title {
      font-size: 2rem;
      font-weight: 700;
      color: #0a0033;
      margin-bottom: 10px;
    }

    .section-subtitle {
      color: #3d4c63;
      font-size: 16px;
    }

    .insight-card {
      border-radius: 12px;
      padding: 15px;
      height: 100%;
      /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07); */
      display: flex;
      flex-direction: column;
    }

    .insight-card .card-img-top {
      width: 100%;
      height: 190px;
      object-fit: cover;
      border-radius: 12px;
      margin-bottom: 15px;
    }

    .insight-card .card-title {
      font-size: 16px;
      font-weight: 600;
      color: #0a0033;
      margin-bottom: 10px;
    }

    .insight-card .card-text {
      font-size: 14px;
      color: #3d4c63;
      flex-grow: 1;
    }

    .insight-card .btn-learn {
      background-color: #00baff;
      color: #fff;
      border: none;
      padding: 8px 18px;
      font-weight: 500;
      border-radius: 8px;
      text-decoration: none;
      display: inline-block;
      margin-top: 15px;
      transition: background-color 0.3s;
    }

    .insight-card .btn-learn:hover {
      background-color: #0095da;
    }

    @media (max-width: 768px) {
      .section-title {
        font-size: 1.5rem;
      }
      .insight-card .card-img-top {
        height: 160px;
      }
    }

    .insight-card img {
      width: 100%;
      height: 190px;
      object-fit: cover;
      border-radius: 12px;
      transition: transform 0.4s ease-in-out;
      transform: scale(1.1)
    }

    .insight-card:hover img {
      transform: scale(1);
    }

    .join-section {
      padding: 80px 20px;
      display: flex;
      justify-content: center;
    }

    .join-container {
      background-color: #dff3fc;
      width: 80%;
      border-radius: 30px;
      padding: 60px 40px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .join-section .pre-title {
      color: #00aaff;
      font-weight: 600;
      font-size: 16px;
      margin-bottom: 10px;
    }

    .join-section .main-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: #0a0033;
      margin-bottom: 20px;
      line-height: 1.3;
    }

    .join-section .highlight {
      color: #0046c0;
    }

    .join-section .description {
      color: #3d4c63;
      font-size: 1.05rem;
      max-width: 750px;
      margin: 0 auto;
    }

    .join-section .btn {
      padding: 12px 24px;
      border-radius: 12px;
      font-weight: 600;
      margin: 10px;
      font-size: 15px;
    }

    .trial-btn {
      background-color: #00baff;
      color: #fff;
      border: none;
    }

    .trial-btn:hover {
      background-color: #0096d1;
    }

    .demo-btn {
      background-color: #00226c;
      color: #fff;
      border: none;
    }

    .demo-btn:hover {
      background-color: #001b55;
    }

    @media (max-width: 768px) {
      .join-container {
        width: 95%;
        padding: 40px 20px;
      }

      .join-section .main-title {
        font-size: 2rem;
      }
    }

    .footer-section {
      background-color: #3c4caa;
      color: white;
      padding: 60px 20px;
      font-family: 'Segoe UI', sans-serif;
      font-size: 14px;
    }
    .footer-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 40px 20px;
      }

      .footer-columns {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
      }

      .footer-col {
        flex: 1 1 calc(25% - 30px);
        min-width: 200px;
        text-align: center;
      }

      .footer-col h4 {
        margin-bottom: 15px;
        font-size: 18px;
        color: #fff;
      }

      .footer-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .footer-col ul li {
        margin-bottom: 10px;
        color: #ccc;
        font-size: 14px;
      }

      .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
        font-size: 13px;
        color: #aaa;
        text-align: center;
      }

      .footer-bottom a {
        color: #aaa;
        text-decoration: underline;
        margin: 0 5px;
      }

      .footer-brand {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 15px;
      }
    .footer-brand img {
      height: 40px;
      max-width: 140px;
    }

    @media (max-width: 992px) {
      .footer-col {
        flex: 1 1 calc(50% - 30px);
      }
    }

    @media (max-width: 600px) {
      .footer-col {
        flex: 1 1 100%;
      }
    }
    @media (min-width: 768px) {
      .footer-brand {
        flex-direction: row;
        justify-content: center;
      }
    }

    #backToTop {
      position: fixed;
      bottom: 40px;
      right: 40px;
      z-index: 999;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: 50%;
      padding: 18px;
      font-size: 20px;
      color: #00f7ff;
      cursor: pointer;
      box-shadow: 0 0 20px rgba(0, 247, 255, 0.2), 0 0 40px rgba(0, 247, 255, 0.1);
      transition: all 0.4s ease;
      display: none;
    }

    #backToTop:hover {
      transform: scale(1.2);
      color: #fff;
      box-shadow: 0 0 30px rgba(0, 247, 255, 0.5), 0 0 60px rgba(0, 247, 255, 0.3);
      background: linear-gradient(135deg, rgba(0, 247, 255, 0.2), rgba(0, 128, 255, 0.2));
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 10px rgba(0, 247, 255, 0.3); }
      50% { box-shadow: 0 0 30px rgba(0, 247, 255, 0.6); }
      100% { box-shadow: 0 0 10px rgba(0, 247, 255, 0.3); }
    }