/*NEW STYPES*/
.navbar {
  background-color: #003366;
}

.navbar-nav .nav-link {
  text-transform: uppercase;
  color: #ffffff;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #ffcc00;
}

.hero-btn, .cta-btn, .btn {
  background-color: #0066cc;
  color: #ffffff;
  border: none;
}

.hero-btn:hover, .cta-btn:hover, .btn:hover {
  background-color: #004c99;
  color: #ffffff;
}

.card {
  background-color: #ffffff;
  color: #212529;
  padding: 1rem;
  border: 1px solid #dee2e6;
}

.card h3,
.card p {
  color: #212529;
}

.breadcrumb-item a,
.breadcrumb-item.active {
  color: #333333;
}



/*END*/


 body {
      background-color: #f8f9fa;
    }

    #container {
      max-width: 600px;
      margin: 40px auto;
      background-color: white;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    h1 {
      font-size: 1.8rem;
      font-weight: bold;
      text-align: center;
      margin-bottom: 25px;
      color: #0d6efd;
    }

    #convertBtn {
      width: 100%;
      background-color: #0d6efd;
      color: white;
      border: none;
      padding: 10px 20px;
      font-weight: bold;
      border-radius: 6px;
    }

    #convertBtn:hover {
      background-color: #0b5ed7;
    }

    #downloadLink {
      margin-top: 20px;
      display: inline-block;
      padding: 10px 15px;
      background-color: #198754;
      color: white;
      text-decoration: none;
      border-radius: 6px;
    }

    #downloadLink:hover {
      background-color: #157347;
    }

  .navbar-nav .nav-link {
    text-transform: uppercase;
    color: white !important;
  }

  .navbar-nav .nav-link.active {
    color: #ffc107 !important; /* Bootstrap success color */
  }

  /*Styles for why choose our  tools*/
  .feature-card {
    background-color: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    transition: all 0.3s ease-in-out;
    text-align: center;
  }

  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  }

  .feature-icon {
    font-size: 2.8rem;
    color: #0d6efd;
    margin-bottom: 1rem;
  }

  .feature-title {
    font-weight: 600;
    font-size: 1.25rem;
    color: #212529;
    margin-bottom: 0.5rem;
  }

  .feature-desc {
    font-size: 0.95rem;
    color: #6c757d;
  }

/*Styles of how it works*/
  .step-card {
    background-color: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    padding: 1.8rem 1.5rem;
  }

  .step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .step-icon {
    font-size: 2.2rem;
    color: #0d6efd;
    margin-bottom: 1rem;
  }

  .step-badge {
    background: #0d6efd;
    color: #fff;
    font-size: 1.1rem;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .step-title {
    font-weight: 600;
    font-size: 1.15rem;
    color: #212529;
    margin-top: 0.5rem;
  }

  .step-desc {
    font-size: 0.95rem;
    color: #555;
  }

  .section-subtext {
    font-size: 0.9rem;
    color: #6c757d;
  }

/*Start Resizing*/
  .floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.5);
    }
    70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 12px rgba(13, 110, 253, 0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
  }

/*Hide starting reduce*/
  @media (max-width: 576px) {
    #scroll-btn {
      font-size: 0.9rem;
      padding: 0.4rem 1rem;
      bottom: 15px;
      right: 15px;
    }
  }
