@charset "UTF-8";


    @font-face {
      font-family: "bootstrap-icons";
      src: url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/fonts/bootstrap-icons.woff2") format("woff2"),
           url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/fonts/bootstrap-icons.woff") format("woff");
      font-display: swap;
    }
    body {
      overflow-x: hidden;
    }
    .navbar {
      position: sticky;
      top: 0;
      z-index: 50;
      transition: transform 0.3s ease;
    }
    html {
      scroll-behavior: smooth;
    }
    .nav-link.active {
      position: relative;
      font-weight: 600;
    }
    .nav-link.active::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      height: 3px;
      width: 100%;
      background-color: #0d6efd;
      border-radius: 2px;
    }
    .navbar.scrolled {
      padding-top: 0.3rem;
      padding-bottom: 0.3rem;
      box-shadow: 0 4px 12px rgba(13, 110, 253, 0.35);
    }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6l18 18M6 24L24 6'/%3e%3c/svg%3e");
    }
    .hover-shadow {
      transition: all 0.3s ease;
      cursor: pointer;
    }
    .hover-shadow:hover {
      background-color: #f0f0f5;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      cursor: pointer;
    }
    .swiper-slide {
      display: flex;
      justify-content: center;
    }
    .cardi {
      width: 19rem;
      cursor: pointer;
    }
    .card-info-bar {
      position: absolute;
      bottom: 0;
      width: 100%;
      color: white;
      padding: 1rem;
      transition: max-height 0.4s ease, background 0.4s ease;
      max-height: 110px;
      overflow: hidden;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 65%, rgba(0, 0, 0, 0) 100%);
    }
    .card-info-bar p {
      line-height: 1.7;
      background-color: rgba(255, 255, 255, 0.2);
      padding: 2px 6px;
      border-radius: 4px;
    }
    .card:hover .card-info-bar,
    .card.active .card-info-bar {
      max-height: 1000px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 75%, rgba(0, 0, 0, 0) 100%);
    }
    .bg-section {
        background: linear-gradient(135deg, #1e1e2f, #2d2d44);
        color: #fff;
        }
    .platform-box {
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 0.5rem;
        padding: 1.5rem;
        transition: all 0.3s ease;
        background-color: rgba(255, 255, 255, 0.05);
        cursor: pointer;
        }
    .platform-box:hover {
        background-color: #0d6efd;
        color: #fff;
        border-color: #0d6efd;
        }
    .hvc {
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
      background-color: #fff;
    }
    .hvc:hover,
    .hvc:active {
      background-color: #f0f4ff;
      cursor: pointer;
      box-shadow: none;
    }

    .tab{background-color: #f0f4ff;}
    .tab-buttons {
      display: flex;
      margin-bottom: 2px;
      justify-content: space-between;
    }

    .tab-buttons button {
      padding: 10px 20px;
      cursor: pointer;
      border: none;
      background-color: #eee;
      margin-right: 5px;
      width:100%;
      font-weight:600;
    }

    .tab-buttons button.active {
      background-color: #0d6efd;
      color:#fff;
    }

    .tab-content {
      display: none;
      padding: 10px;
    }

    .tab-content.active {
      display: block;
    }
    
    .ftr a {
        text-decoration: none;
      }
    .list-unstyled li{
          line-height:2;
      }
    .navbar-nav a{
          text-decoration:none;
      }

    .responsive-columns {
      columns: 3;
      -webkit-columns: 3;
      -moz-columns: 3;
      column-gap: 2rem;
      list-style-type: disc;
      padding-left: 1.2rem;
      line-height: 2;
    }
    
    @media (max-width: 768px) {
      .responsive-columns {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
      }
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1rem; /* 16px gap between items */
    }
    
    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr; /* exactly 2 columns */
      gap: 1rem; /* space between FAQ items */
    }

    .faq-item {
      border: 1px solid rgba(0, 0, 0, 0.1); /* subtle border */
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      transition: box-shadow 0.3s ease, transform 0.2s ease;
    }

    .faq-header {
      padding: 15px;
      cursor: pointer;
      font-size: 1.1rem;
      font-weight: 600;
      background-color: #f1f1f1;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background-color 0.3s ease, color 0.3s ease;
    }
    
    .faq-header:hover {
      background-color: #0d6efd;
      color: #fff;
    }
    
    .faq-header::after {
      content: '\25BE'; /* downward arrow */
      font-size: 1.2rem;
      transition: transform 0.3s ease;
    }
    
    .faq-item.active .faq-header::after {
      transform: rotate(180deg);
      color: #fff;
    }

    .faq-content {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      font-size: 0.95rem;
      line-height: 1.6;
      color: #333;
      background-color: #f8f9fa;
      transition: max-height 0.4s ease, padding 0.3s ease;
    }
    
    .faq-item.active .faq-content {
      max-height: 500px;
      padding: 15px;
    }

    .faq-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    }

    @media (max-width: 600px) {
      .faq-grid {
        grid-template-columns: 1fr;
      }
    }
    .form-control {
        background-color: #f8f9fa;
    }